Changeset 14054 in vbox for trunk/include
- Timestamp:
- Nov 10, 2008 10:50:44 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39110
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r14052 r14054 153 153 * @param cchRealPath Size of the buffer. 154 154 */ 155 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, unsignedcchRealPath);155 RTDECL(int) RTPathReal(const char *pszPath, char *pszRealPath, size_t cchRealPath); 156 156 157 157 /** … … 172 172 * @param cchAbsPath Size of the buffer. 173 173 */ 174 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, unsignedcchAbsPath);174 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath); 175 175 176 176 /** … … 196 196 * @param cchAbsPath Size of the buffer. 197 197 */ 198 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, unsignedcchAbsPath);198 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath); 199 199 200 200 /**
Note:
See TracChangeset
for help on using the changeset viewer.