Changeset 78104 in vbox for trunk/include/iprt/path.h
- Timestamp:
- Apr 10, 2019 5:33:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r78098 r78104 365 365 * Same as RTPathAbsEx only the result is RTStrDup()'ed. 366 366 * 367 * @returns Pointer to the absolute path. Use RTStrFree() to free this string. 368 * @returns NULL if RTPathAbsEx() or RTStrDup() fails. 367 * @returns Pointer to the absolute path. Use RTStrFree() to free this string. 368 * @retval NULL if RTPathAbsEx() or RTStrDup() fails. 369 * 369 370 * @param pszBase The base path to act like a current directory. 370 371 * When NULL, the actual cwd is used (i.e. the call 371 372 * is equivalent to RTPathAbs(pszPath, ...). 372 373 * @param pszPath The path to resolve. 373 * 374 * @note Current implementation is buggy and will remove trailing slashes375 * that would normally specify a directory. Don't depend on this.376 */ 377 RTDECL(char *) RTPathAbsExDup(const char *pszBase, const char *pszPath );374 * @param fFlags One of the RTPATH_STR_F_STYLE_XXX flags combined 375 * with any of the RTPATHABS_F_XXX ones. Most 376 * users will pass RTPATH_STR_F_STYLE_HOST (0). 377 */ 378 RTDECL(char *) RTPathAbsExDup(const char *pszBase, const char *pszPath, uint32_t fFlags); 378 379 379 380 /**
Note:
See TracChangeset
for help on using the changeset viewer.