Changeset 74091 in vbox for trunk/include/iprt
- Timestamp:
- Sep 5, 2018 5:58:31 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/http.h
r74090 r74091 464 464 * call this method for different status codes. Only the last one 465 465 * with be honored. 466 * 467 * @note This only works reliably with RTHttpPerform at the moment. 466 468 */ 467 469 RTR3DECL(int) RTHttpSetDownloadCallback(RTHTTP hHttp, uint32_t fFlags, PFNRTHTTPDOWNLOADCALLBACK pfnCallback, void *pvUser); … … 501 503 * @param pfnCallback The callback function. Pass NULL to reset the callback. 502 504 * @param pvUser Convenience pointer for the callback function. 505 * 506 * @note This only works reliably with RTHttpPerform at the moment. 503 507 */ 504 508 RTR3DECL(int) RTHttpSetUploadCallback(RTHTTP hHttp, uint64_t cbContent, PFNRTHTTPUPLOADCALLBACK pfnCallback, void *pvUser); … … 528 532 * @param pfnCallback The callback function. Pass NULL to reset the callback. 529 533 * @param pvUser Convenience pointer for the callback function. 534 * 535 * @note This only works reliably with RTHttpPerform at the moment. 530 536 */ 531 537 RTR3DECL(int) RTHttpSetHeaderCallback(RTHTTP hHttp, PFNRTHTTPHEADERCALLBACK pfnCallback, void *pvUser);
Note:
See TracChangeset
for help on using the changeset viewer.