Changeset 73886 in vbox for trunk/include/iprt
- Timestamp:
- Aug 25, 2018 9:51:12 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/http.h
r73857 r73886 53 53 * Creates a HTTP client instance. 54 54 * 55 * @returns iprt status code. 56 * 55 * @returns IPRT status code. 57 56 * @param phHttp Where to store the HTTP handle. 58 57 */ … … 62 61 * Resets a HTTP client instance. 63 62 * 64 * @returns iprt status code. 65 * 63 * @returns IPRT status code. 66 64 * @param hHttp Handle to the HTTP interface. 67 65 */ … … 71 69 * Destroys a HTTP client instance. 72 70 * 71 * @returns IPRT status code. 73 72 * @param hHttp Handle to the HTTP interface. 74 73 */ 75 RTR3DECL( void) RTHttpDestroy(RTHTTP hHttp);74 RTR3DECL(int) RTHttpDestroy(RTHTTP hHttp); 76 75 77 76
Note:
See TracChangeset
for help on using the changeset viewer.