Changeset 52944 in vbox for trunk/include/iprt/nt/nt.h
- Timestamp:
- Oct 5, 2014 4:37:10 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 96384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r52943 r52944 237 237 ULONG fObjAttribs, PHANDLE phHandle, bool *pfObjDir); 238 238 RTDECL(int) RTNtPathClose(HANDLE hHandle); 239 240 /** 241 * Converts a UTF-16 windows-style path to NT format. 242 * 243 * @returns IPRT status code. 244 * @param pNtName Where to return the NT name. Free using 245 * RTNtPathFree. 246 * @param phRootDir Where to return the root handle, if applicable. 247 * @param pwszPath The UTF-16 windows-style path. 248 * @param cwcPath The max length of the windows-style path in 249 * RTUTF16 units. Use RTSTR_MAX if unknown and @a 250 * pwszPath is correctly terminated. 251 */ 252 RTDECL(int) RTNtPathFromWinUtf16Ex(struct _UNICODE_STRING *pNtName, HANDLE *phRootDir, PCRTUTF16 pwszPath, size_t cwcPath); 253 254 /** 255 * Frees the native path and root handle. 256 * 257 * @param pNtName The NT path after a successful 258 * RTNtPathFromWinUtf16Ex call. 259 * @param phRootDir The root handle variable after a successfull 260 * RTNtPathFromWinUtf16Ex call. 261 */ 262 RTDECL(void) RTNtPathFree(struct _UNICODE_STRING *pNtName, HANDLE *phRootDir); 263 239 264 240 265 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.