Changeset 74460 in vbox for trunk/include/iprt
- Timestamp:
- Sep 25, 2018 3:42:33 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r70891 r74460 1503 1503 RTDECL(RTEXITCODE) RTPathRmCmd(unsigned cArgs, char **papszArgs); 1504 1504 1505 # ifdef RT_OS_WINDOWS 1506 1507 /** 1508 * Converts the given UTF-8 path into a native windows path. 1509 * 1510 * @returns IPRT status code. 1511 * @param ppwszPath Where to return the path. This will always be 1512 * set to NULL on failure. Use RTPathWinFree to 1513 * free it when done. 1514 * @param pszPath The UTF-8 path to convert. 1515 * @param fFlags MBZ, reserved for future hacks. 1516 * @sa RTPathWinFree, RTNtPathFromWinUtf8, RTNtPathRelativeFromUtf8. 1517 */ 1518 RTDECL(int) RTPathWinFromUtf8(PRTUTF16 *ppwszPath, const char *pszPath, uint32_t fFlags); 1519 1520 /** 1521 * Frees a native windows path returned by RTPathWinFromUtf8 1522 * 1523 * @param pwszPath The path to free. NULL is ignored. 1524 */ 1525 RTDECL(void) RTPathWinFree(PRTUTF16 pwszPath); 1526 1527 # endif /* RT_OS_WINDOWS */ 1528 1505 1529 #endif /* IN_RING3 */ 1506 1530
Note:
See TracChangeset
for help on using the changeset viewer.