Mercurial > trustbridge
comparison ui/downloader_win.cpp @ 1304:82fab0c689bf 0.9.3
Fix doxygen syntax error. Change inout to in,out
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 29 Sep 2014 16:42:06 +0200 |
parents | 09bb19e5e369 |
children |
comparison
equal
deleted
inserted
replaced
1303:78637257f547 | 1304:82fab0c689bf |
---|---|
124 } | 124 } |
125 | 125 |
126 | 126 |
127 /** @brief open a session with appropriate proxy settings | 127 /** @brief open a session with appropriate proxy settings |
128 * | 128 * |
129 * @param[inout] *pHSession pointer to a HInternet structure | 129 * @param[in,out] *pHSession pointer to a HInternet structure |
130 * | 130 * |
131 * On error call getLastError to get extended error information. | 131 * On error call getLastError to get extended error information. |
132 * | 132 * |
133 * @returns True on success, false on error. | 133 * @returns True on success, false on error. |
134 */ | 134 */ |
188 | 188 |
189 | 189 |
190 /** @brief initialize a connection in the session | 190 /** @brief initialize a connection in the session |
191 * | 191 * |
192 * @param[in] HSession the session to work in. | 192 * @param[in] HSession the session to work in. |
193 * @param[inout] *pHConnect pointer to the connection. | 193 * @param[in,out] *pHConnect pointer to the connection. |
194 * @param[in] url pointer to the URL in wchar representation. | 194 * @param[in] url pointer to the URL in wchar representation. |
195 * | 195 * |
196 * On error call getLastError to get extended error information. | 196 * On error call getLastError to get extended error information. |
197 * | 197 * |
198 * @returns True on success, false on error. | 198 * @returns True on success, false on error. |
214 | 214 |
215 /** @brief Create a request | 215 /** @brief Create a request |
216 * | 216 * |
217 * @param[in] HSession the session to work in. | 217 * @param[in] HSession the session to work in. |
218 * @param[in] HConnect the connection to use. | 218 * @param[in] HConnect the connection to use. |
219 * @param[inout] *pHRequest pointer to the request structure to be filled. | 219 * @param[in,out] *pHRequest pointer to the request structure to be filled. |
220 * @param[in] requestType the HTTP request to be made default is GET | 220 * @param[in] requestType the HTTP request to be made default is GET |
221 * @param[in] resource pointer to the resource to request in wchar | 221 * @param[in] resource pointer to the resource to request in wchar |
222 * representation. | 222 * representation. |
223 * | 223 * |
224 * On error call getLastError to get extended error information. | 224 * On error call getLastError to get extended error information. |