Changeset 40979 in vbox
- Timestamp:
- Apr 18, 2012 6:14:03 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
- 2 moved
-
include/iprt/mangling.h (modified) (1 diff)
-
include/iprt/path.h (modified) (3 diffs)
-
src/VBox/Runtime/Makefile.kmk (modified) (3 diffs)
-
src/VBox/Runtime/common/path/RTPathHasExt.cpp (moved) (moved from trunk/src/VBox/Runtime/common/path/RTPathHaveExt.cpp ) (2 diffs)
-
src/VBox/Runtime/common/path/RTPathHasPath.cpp (moved) (moved from trunk/src/VBox/Runtime/common/path/RTPathHavePath.cpp ) (2 diffs)
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 /** -
trunk/src/VBox/Runtime/Makefile.kmk
r40969 r40979 347 347 common/path/RTPathExt.cpp \ 348 348 common/path/RTPathFilename.cpp \ 349 common/path/RTPathHa veExt.cpp \350 common/path/RTPathHa vePath.cpp \349 common/path/RTPathHasExt.cpp \ 350 common/path/RTPathHasPath.cpp \ 351 351 common/path/RTPathJoin.cpp \ 352 352 common/path/RTPathJoinA.cpp \ … … 1129 1129 common/path/RTPathExt.cpp \ 1130 1130 common/path/RTPathFilename.cpp \ 1131 common/path/RTPathHa veExt.cpp \1132 common/path/RTPathHa vePath.cpp \1131 common/path/RTPathHasExt.cpp \ 1132 common/path/RTPathHasPath.cpp \ 1133 1133 common/path/RTPathJoin.cpp \ 1134 1134 common/path/RTPathJoinA.cpp \ … … 1637 1637 common/path/RTPathExt.cpp \ 1638 1638 common/path/RTPathFilename.cpp \ 1639 common/path/RTPathHa veExt.cpp \1640 common/path/RTPathHa vePath.cpp \1639 common/path/RTPathHasExt.cpp \ 1640 common/path/RTPathHasPath.cpp \ 1641 1641 common/path/RTPathParse.cpp \ 1642 1642 common/path/RTPathRealDup.cpp \ -
trunk/src/VBox/Runtime/common/path/RTPathHasExt.cpp
r40978 r40979 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - RTPathHa veExt3 * IPRT - RTPathHasExt 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 41 41 * @param pszPath Path to check. 42 42 */ 43 RTDECL(bool) RTPathHa veExt(const char *pszPath)43 RTDECL(bool) RTPathHasExt(const char *pszPath) 44 44 { 45 45 return RTPathExt(pszPath) != NULL; -
trunk/src/VBox/Runtime/common/path/RTPathHasPath.cpp
r40978 r40979 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - RTPathHa vePath3 * IPRT - RTPathHasPath 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 41 41 * @param pszPath Path to check. 42 42 */ 43 RTDECL(bool) RTPathHa vePath(const char *pszPath)43 RTDECL(bool) RTPathHasPath(const char *pszPath) 44 44 { 45 45 #if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
Note:
See TracChangeset
for help on using the changeset viewer.

