Changeset 67132 in vbox
- Timestamp:
- May 29, 2017 5:51:09 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115804
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r67123 r67132 1437 1437 # define RTPathSetTimesEx RT_MANGLER(RTPathSetTimesEx) 1438 1438 # define RTPathSharedLibs RT_MANGLER(RTPathSharedLibs) 1439 # define RTPathSkipRootSpec RT_MANGLER(RTPathSkipRootSpec) 1439 1440 # define RTPathSplit RT_MANGLER(RTPathSplit) 1440 1441 # define RTPathSplitATag RT_MANGLER(RTPathSplitATag) … … 2298 2299 # define RTVfsChainOpenFile RT_MANGLER(RTVfsChainOpenFile) 2299 2300 # define RTVfsChainOpenIoStream RT_MANGLER(RTVfsChainOpenIoStream) 2301 # define RTVfsChainQueryFinalPath RT_MANGLER(RTVfsChainQueryFinalPath) 2300 2302 # define RTVfsChainQueryInfo RT_MANGLER(RTVfsChainQueryInfo) 2301 2303 # define RTVfsChainSpecCheckAndSetup RT_MANGLER(RTVfsChainSpecCheckAndSetup) -
trunk/include/iprt/path.h
r62473 r67132 359 359 360 360 /** 361 * Skips the root specification, if present. 362 * 363 * @return Pointer to the first char after the root specification. This can be 364 * pointing to the terminator, if the path is only a root 365 * specification. 366 * @param pszPath The path to skip ahead in. 367 */ 368 RTDECL(char *) RTPathSkipRootSpec(const char *pszPath); 369 370 /** 361 371 * Ensures that the path has a trailing path separator such that file names can 362 372 * be appended without further work. … … 479 489 */ 480 490 RTDECL(bool) RTPathStartsWithRoot(const char *pszPath); 491 492 481 493 482 494 /** -
trunk/src/VBox/Runtime/Makefile.kmk
r67116 r67132 510 510 common/path/RTPathRealDup.cpp \ 511 511 common/path/RTPathRmCmd.cpp \ 512 common/path/RTPathSkipRootSpec.cpp \ 512 513 common/path/RTPathSplit.cpp \ 513 514 common/path/RTPathSplitA.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.