Changeset 7170 in vbox for trunk/include/iprt/path.h
- Timestamp:
- Feb 27, 2008 1:20:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r5999 r7170 92 92 * However it might be insufficient on other platforms 93 93 * and even on PC a UNC volume spec won't be detected this way. 94 * Use the RTPath <too be created>() instead.94 * Use the RTPath@<too be created@>() instead. 95 95 * 96 96 * @returns true if it is and false if it isn't. … … 116 116 /** 117 117 * Checks if the path exists. 118 * 118 * 119 119 * Symbolic links will all be attempted resolved. 120 * 120 * 121 121 * @returns true if it exists and false if it doesn't. 122 122 * @param pszPath The path to check. … … 267 267 * @param pszPath2 Path to compare (must be an absolute path). 268 268 * 269 * @returns < 0 if the first path less than the second path.269 * @returns @< 0 if the first path less than the second path. 270 270 * @returns 0 if the first path identical to the second path. 271 * @returns > 0 if the first path greater than the second path.271 * @returns @> 0 if the first path greater than the second path. 272 272 */ 273 273 RTDECL(int) RTPathCompare(const char *pszPath1, const char *pszPath2); … … 323 323 * 324 324 * Linux: /usr/lib 325 * Windows: <program files directory>/<application>325 * Windows: @<program files directory@>/@<application@> 326 326 * Old path: same as RTPathProgram() 327 327 * … … 336 336 * example NLS files, module sources, ... 337 337 * 338 * Linux: /usr/shared/ <application>339 * Windows: <program files directory>/<application>338 * Linux: /usr/shared/@<application@> 339 * Windows: @<program files directory@>/@<application@> 340 340 * Old path: same as RTPathProgram() 341 341 * … … 350 350 * example modules which can be loaded at runtime. 351 351 * 352 * Linux: /usr/lib/ <application>353 * Windows: <program files directory>/<application>352 * Linux: /usr/lib/@<application@> 353 * Windows: @<program files directory@>/@<application@> 354 354 * Old path: same as RTPathProgram() 355 355 * … … 363 363 * Gets the directory for documentation. 364 364 * 365 * Linux: /usr/share/doc/ <application>366 * Windows: <program files directory>/<application>365 * Linux: /usr/share/doc/@<application@> 366 * Windows: @<program files directory@>/@<application@> 367 367 * Old path: same as RTPathProgram() 368 368 *
Note:
See TracChangeset
for help on using the changeset viewer.