VirtualBox

Changeset 52944 in vbox for trunk/include/iprt/nt/nt.h


Ignore:
Timestamp:
Oct 5, 2014 4:37:10 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
96384
Message:

IPRT: Separated out RTPathAbs from the posix, fixing it up for windows + OS/2, and made it generic. Also added some NT path routines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/nt/nt.h

    r52943 r52944  
    237237                            ULONG fObjAttribs, PHANDLE phHandle, bool *pfObjDir);
    238238RTDECL(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 */
     252RTDECL(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 */
     262RTDECL(void) RTNtPathFree(struct _UNICODE_STRING *pNtName, HANDLE *phRootDir);
     263
    239264
    240265RT_C_DECLS_END
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette