Changeset 14050 in vbox for trunk/include/iprt
- Timestamp:
- Nov 10, 2008 10:48:21 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39106
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r11836 r14050 234 234 /** 235 235 * Parses a path. 236 * 237 * It figures the length of the directory component, the offset of 236 * 237 * It figures the length of the directory component, the offset of 238 238 * the file name and the location of the suffix dot. 239 239 * 240 240 * @returns The path length. 241 * 241 * 242 242 * @param pszPath Path to find filename in. 243 243 * @param pcbDir Where to put the length of the directory component. … … 249 249 * If empty string or if it's ending with a slash this 250 250 * will be set to -1. Optional. 251 * @param pfFlags Where to set flags returning more information about 251 * @param pfFlags Where to set flags returning more information about 252 252 * the path. For the future. Optional. 253 253 */ … … 358 358 * @param cchPath Buffer size in bytes. 359 359 */ 360 RTDECL(int) RTPathUserHome(char *pszPath, unsignedcchPath);360 RTDECL(int) RTPathUserHome(char *pszPath, size_t cchPath); 361 361 362 362 /** … … 373 373 * @param cchPath Buffer size in bytes. 374 374 */ 375 RTDECL(int) RTPathSharedLibs(char *pszPath, unsignedcchPath);375 RTDECL(int) RTPathSharedLibs(char *pszPath, size_t cchPath); 376 376 377 377 /** … … 387 387 * @param cchPath Buffer size in bytes. 388 388 */ 389 RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, unsignedcchPath);389 RTDECL(int) RTPathAppPrivateNoArch(char *pszPath, size_t cchPath); 390 390 391 391 /** … … 401 401 * @param cchPath Buffer size in bytes. 402 402 */ 403 RTDECL(int) RTPathAppPrivateArch(char *pszPath, unsignedcchPath);403 RTDECL(int) RTPathAppPrivateArch(char *pszPath, size_t cchPath); 404 404 405 405 /**
Note:
See TracChangeset
for help on using the changeset viewer.