Changeset 74224 in vbox for trunk/include
- Timestamp:
- Sep 12, 2018 2:44:27 PM (6 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/restclient.h
r74181 r74224 100 100 * @param a_offContent The byte offset corresponding to the start of @a a_pvDst. 101 101 * @param a_pcbActual Where to return the number of bytes actually produced. 102 * 102 103 * @remarks Use getCallbackData to get the user data. 104 * 105 * @note The @a a_offContent parameter does not imply random access or anthing 106 * like that, it is just a convenience provided by the caller. The value 107 * is the sum of the previously returned @a *pcbActual values. 103 108 */ 104 109 typedef DECLCALLBACK(int) FNPRODUCER(RTCRestBinaryParameter *a_pThis, void *a_pvDst, size_t a_cbDst, … … 228 233 * @param a_offContent The byte offset corresponding to the start of @a a_pvSrc. 229 234 * @param a_cbContent The content length field value, UINT64_MAX if not available. 235 * 230 236 * @remarks Use getCallbackData to get the user data. 237 * 238 * @note The @a a_offContent parameter does not imply random access or anthing 239 * like that, it is just a convenience provided by the caller. The value 240 * is the sum of the previous @a a_cbSrc values. 231 241 */ 232 242 typedef DECLCALLBACK(int) FNCONSUMER(RTCRestBinaryResponse *a_pThis, const void *a_pvSrc, size_t a_cbSrc, -
trunk/include/iprt/http.h
r74222 r74224 468 468 * @param cbContent The content length field value, UINT64_MAX if not available. 469 469 * @param pvUser The user parameter. 470 * 471 * @note The @a offContent parameter does not imply random access or anthing 472 * like that, it is just a convenience provided by the caller. The 473 * value is the sum of the previous @a cbBuf values. 470 474 */ 471 475 typedef DECLCALLBACK(int) FNRTHTTPDOWNLOADCALLBACK(RTHTTP hHttp, void const *pvBuf, size_t cbBuf, uint32_t uHttpStatus, … … 511 515 * @param pcbActual Actual number of bytes provided. 512 516 * @param pvUser The user parameter. 517 * 518 * @note The @a offContent parameter does not imply random access or anthing 519 * like that, it is just a convenience provided by the caller. The 520 * value is the sum of the previously returned @a *pcbActual values. 513 521 */ 514 522 typedef DECLCALLBACK(int) FNRTHTTPUPLOADCALLBACK(RTHTTP hHttp, void *pvBuf, size_t cbBuf, uint64_t offContent,
Note:
See TracChangeset
for help on using the changeset viewer.