Changeset 44241 in vbox for trunk/include/iprt
- Timestamp:
- Jan 7, 2013 8:17:19 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83097
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r43291 r44241 1173 1173 # define RTSgBufCopyToBuf RT_MANGLER(RTSgBufCopyToBuf) 1174 1174 # define RTSgBufInit RT_MANGLER(RTSgBufInit) 1175 # define RTSgBufIsZero RT_MANGLER(RTSgBufIsZero) 1175 1176 # define RTSgBufReset RT_MANGLER(RTSgBufReset) 1176 1177 # define RTSgBufSegArrayCreate RT_MANGLER(RTSgBufSegArrayCreate) -
trunk/include/iprt/sg.h
r38539 r44241 220 220 */ 221 221 RTDECL(size_t) RTSgBufSegArrayCreate(PRTSGBUF pSgBuf, PRTSGSEG paSeg, unsigned *pcSeg, size_t cbData); 222 223 /** 224 * Returns whether the given S/G buffer is zeroed out from the current position 225 * upto the number of bytes to check. 226 * 227 * @returns true if the buffer has only zeros 228 * false otherwise. 229 * @param pSgBuf The S/G buffer. 230 * @param cbCheck Number of bytes to check. 231 */ 232 RTDECL(bool) RTSgBufIsZero(PRTSGBUF pSgBuf, size_t cbCheck); 222 233 223 234 /**
Note:
See TracChangeset
for help on using the changeset viewer.