Changeset 78098 in vbox for trunk/include
- Timestamp:
- Apr 10, 2019 3:51:59 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129954
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/iprt/mangling.h ¶
r78066 r78098 1600 1600 # define RTPathAbsDup RT_MANGLER(RTPathAbsDup) 1601 1601 # define RTPathAbsEx RT_MANGLER(RTPathAbsEx) 1602 # define RTPathAbsExEx RT_MANGLER(RTPathAbsExEx)1603 1602 # define RTPathAbsExDup RT_MANGLER(RTPathAbsExDup) 1604 1603 # define RTPathAppDocs RT_MANGLER(RTPathAppDocs) -
TabularUnified trunk/include/iprt/path.h ¶
r78051 r78098 332 332 /** 333 333 * Get the absolute path (no symlinks, no . or .. components), assuming the 334 * given base path as the current directory. The resulting path doesn't have335 * to exist.336 *337 * @returns iprt status code.338 * @param pszBase The base path to act like a current directory.339 * When NULL, the actual cwd is used (i.e. the call340 * is equivalent to RTPathAbs(pszPath, ...).341 * @param pszPath The path to resolve.342 * @param pszAbsPath Where to store the absolute path.343 * @param cbAbsPath Size of the buffer.344 *345 * @note Current implementation is buggy and will remove trailing slashes346 * that would normally specify a directory. Don't depend on this.347 */348 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cbAbsPath);349 350 /**351 * Get the absolute path (no symlinks, no . or .. components), assuming the352 334 * given base path as the current directory. 353 335 * … … 369 351 * failures. 370 352 */ 371 RTDECL(int) RTPathAbsEx Ex(const char *pszBase, const char *pszPath, uint32_t fFlags, char *pszAbsPath, size_t *pcbAbsPath);353 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, uint32_t fFlags, char *pszAbsPath, size_t *pcbAbsPath); 372 354 373 355 /** @name RTPATHABS_F_XXX - Flags for RTPathAbsEx.
Note:
See TracChangeset
for help on using the changeset viewer.