Changeset 14054 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 10, 2008 10:50:44 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/path.cpp
r14052 r14054 571 571 * @param cchAbsPath Size of the buffer. 572 572 */ 573 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, unsignedcchAbsPath)573 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath) 574 574 { 575 575 if (pszBase && pszPath && !rtPathVolumeSpecLen(pszPath)) -
trunk/src/VBox/Runtime/r3/posix/path-posix.cpp
r14050 r14054 60 60 61 61 62 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, unsignedcchRealPath)62 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath) 63 63 { 64 64 /* … … 167 167 168 168 169 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, unsignedcchAbsPath)169 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath) 170 170 { 171 171 /* -
trunk/src/VBox/Runtime/r3/win/path-win.cpp
r14050 r14054 56 56 * @param cchRealPath Size of the buffer. 57 57 */ 58 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, unsignedcchRealPath)58 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath) 59 59 { 60 60 /* … … 97 97 * @param cchAbsPath Size of the buffer. 98 98 */ 99 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, unsignedcchAbsPath)99 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath) 100 100 { 101 101 /*
Note:
See TracChangeset
for help on using the changeset viewer.