Changeset 40979 in vbox for trunk/include
- Timestamp:
- Apr 18, 2012 6:14:03 PM (13 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r40966 r40979 906 906 # define RTPathGetCurrent RT_MANGLER(RTPathGetCurrent) 907 907 # define RTPathGetMode RT_MANGLER(RTPathGetMode) 908 # define RTPathHa veExt RT_MANGLER(RTPathHaveExt)909 # define RTPathHa vePath RT_MANGLER(RTPathHavePath)908 # define RTPathHasExt RT_MANGLER(RTPathHasExt) 909 # define RTPathHasPath RT_MANGLER(RTPathHasPath) 910 910 # define RTPathJoin RT_MANGLER(RTPathJoin) 911 911 # define RTPathJoinA RT_MANGLER(RTPathJoinA) -
trunk/include/iprt/path.h
r40826 r40979 332 332 333 333 /** 334 * Checks if a path ha vean extension.334 * Checks if a path has an extension. 335 335 * 336 336 * @returns true if extension present. … … 339 339 */ 340 340 RTDECL(bool) RTPathHaveExt(const char *pszPath); 341 /** Misspelled, don't use. */ 342 #define RTPathHaveExt RTPathHasExt 341 343 342 344 /** … … 347 349 * @param pszPath Path to check. 348 350 */ 349 RTDECL(bool) RTPathHavePath(const char *pszPath); 351 RTDECL(bool) RTPathHasPath(const char *pszPath); 352 /** Misspelled, don't use. */ 353 #define RTPathHavePath RTPathHasPath 350 354 351 355 /**
Note:
See TracChangeset
for help on using the changeset viewer.