Changeset 77816 in vbox for trunk/include/iprt/nt
- Timestamp:
- Mar 21, 2019 12:01:49 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129490
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r76585 r77816 40 40 41 41 #ifdef IPRT_NT_MAP_TO_ZW 42 # define NtQueryDirectoryFile ZwQueryDirectoryFile 42 43 # define NtQueryInformationFile ZwQueryInformationFile 43 44 # define NtQueryInformationProcess ZwQueryInformationProcess … … 388 389 */ 389 390 RTDECL(int) RTNtPathExpand8dot3Path(struct _UNICODE_STRING *pUniStr, bool fPathOnly); 391 392 /** 393 * Wrapper around RTNtPathExpand8dot3Path that allocates a buffer instead of 394 * working on the input buffer. 395 * 396 * @returns IPRT status code, see RTNtPathExpand8dot3Path(). 397 * @param pUniStrSrc The path to fix up. MaximumLength is the max buffer 398 * length. 399 * @param fPathOnly Whether to only process the path and leave the filename 400 * as passed in. 401 * @param pUniStrDst Output string. On success, the caller must use 402 * RTUtf16Free to free what the Buffer member points to. 403 * This is all zeros and NULL on failure. 404 */ 405 RTDECL(int) RTNtPathExpand8dot3PathA(struct _UNICODE_STRING const *pShort, bool fPathOnly, struct _UNICODE_STRING *pUniStrDst); 390 406 391 407
Note:
See TracChangeset
for help on using the changeset viewer.