Changeset 69756 in vbox for trunk/include/iprt
- Timestamp:
- Nov 19, 2017 2:49:04 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/dir.h
r69753 r69756 343 343 * 344 344 * @returns iprt status code. 345 * @param phDir Where to store the open directory pointer.345 * @param phDir Where to store the open directory handle. 346 346 * @param pszPath Path to the directory to open. 347 347 */ … … 363 363 * 364 364 * @returns iprt status code. 365 * @param phDir Where to store the open directory pointer.365 * @param phDir Where to store the open directory handle. 366 366 * @param pszPath Path to the directory to search, this must include wildcards. 367 367 * @param enmFilter The kind of filter to apply. Setting this to RTDIRFILTER_NONE makes … … 375 375 * 376 376 * @returns iprt status code. 377 * @param pDir Pointer to open directory returned by RTDirOpen() or RTDirOpenFiltered(). 377 * @param hDir Handle to open directory returned by RTDirOpen() or 378 * RTDirOpenFiltered(). 378 379 */ 379 380 RTDECL(int) RTDirClose(RTDIR hDir); … … 397 398 * @returns suitable iprt status code on other errors. 398 399 * 399 * @param pDir Pointerto the open directory.400 * @param hDir Handle to the open directory. 400 401 * @param pDirEntry Where to store the information about the next 401 402 * directory entry on success. … … 424 425 * @returns suitable iprt status code on other errors. 425 426 * 426 * @param pDir Pointerto the open directory.427 * @param hDir Handle to the open directory. 427 428 * @param pDirEntry Where to store the information about the next 428 429 * directory entry on success. … … 517 518 * @returns iprt status code. 518 519 * 519 * @param pDir Pointerto the open directory.520 * @param hDir Handle to the open directory. 520 521 * @param pObjInfo Object information structure to be filled on successful return. 521 522 * @param enmAdditionalAttribs Which set of additional attributes to request. … … 531 532 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS. 532 533 * 533 * @param pDir Pointerto the open directory.534 * @param hDir Handle to the open directory. 534 535 * @param pAccessTime Pointer to the new access time. NULL if not to be changed. 535 536 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
Note:
See TracChangeset
for help on using the changeset viewer.