Changeset 19924 in vbox for trunk/include
- Timestamp:
- May 22, 2009 9:52:47 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47626
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r16516 r19924 346 346 347 347 /** 348 * Gets the p rogram path.348 * Gets the path to the directory containing the executable. 349 349 * 350 350 * @returns iprt status code. … … 352 352 * @param cchPath Buffer size in bytes. 353 353 */ 354 RTDECL(int) RTPath Program(char *pszPath, size_t cchPath);354 RTDECL(int) RTPathExecDir(char *pszPath, size_t cchPath); 355 355 356 356 /** … … 364 364 365 365 /** 366 * Gets the directory of shared libraries. This is not the same as 367 * RTPathAppPrivateArch() as Linux depends all shared libraries in 368 * a common global directory where ld.so can found them. 366 * Gets the directory of shared libraries. 367 * 368 * This is not the same as RTPathAppPrivateArch() as Linux depends all shared 369 * libraries in a common global directory where ld.so can found them. 369 370 * 370 371 * Linux: /usr/lib 371 372 * Windows: @<program files directory@>/@<application@> 372 * Old path: same as RTPath Program()373 * Old path: same as RTPathExecDir() 373 374 * 374 375 * @returns iprt status code. … … 384 385 * Linux: /usr/shared/@<application@> 385 386 * Windows: @<program files directory@>/@<application@> 386 * Old path: same as RTPath Program()387 * Old path: same as RTPathExecDir() 387 388 * 388 389 * @returns iprt status code. … … 398 399 * Linux: /usr/lib/@<application@> 399 400 * Windows: @<program files directory@>/@<application@> 400 * Old path: same as RTPath Program()401 * Old path: same as RTPathExecDir() 401 402 * 402 403 * @returns iprt status code. … … 411 412 * Linux: /usr/share/doc/@<application@> 412 413 * Windows: @<program files directory@>/@<application@> 413 * Old path: same as RTPath Program()414 * Old path: same as RTPathExecDir() 414 415 * 415 416 * @returns iprt status code.
Note:
See TracChangeset
for help on using the changeset viewer.