Changeset 35218 in vbox for trunk/include/iprt
- Timestamp:
- Dec 17, 2010 12:45:16 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69063
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/iprt/param.h ¶
r32036 r35218 117 117 /** 118 118 * Host max path (the reasonable value). 119 * @remarks defined both by iprt/param.h and iprt/path.h. 119 120 */ 120 #define RTPATH_MAX (4096 + 4) /* (PATH_MAX + 1) on linux w/ some alignment */ 121 #if !defined(___iprt_path_h) || defined(DOXYGEN_RUNNING) 122 # define RTPATH_MAX (4096 + 4) /* (PATH_MAX + 1) on linux w/ some alignment */ 123 #endif 121 124 122 125 /** @} */ -
TabularUnified trunk/include/iprt/path.h ¶
r34230 r35218 42 42 */ 43 43 44 /** 45 * Host max path (the reasonable value). 46 * @remarks defined both by iprt/param.h and iprt/path.h. 47 */ 48 #if !defined(___iprt_param_h) || defined(DOXYGEN_RUNNING) 49 # define RTPATH_MAX (4096 + 4) /* (PATH_MAX + 1) on linux w/ some alignment */ 50 #endif 44 51 45 52 /** @def RTPATH_SLASH … … 604 611 * 605 612 * This is not the same as RTPathAppPrivateArch() as Linux depends all shared 606 * libraries in a common global directory where ld.so can f ound them.613 * libraries in a common global directory where ld.so can find them. 607 614 * 608 615 * Linux: /usr/lib 616 * Solaris: /opt/@<application@>/@<arch>@ or something 609 617 * Windows: @<program files directory@>/@<application@> 610 618 * Old path: same as RTPathExecDir() … … 621 629 * 622 630 * Linux: /usr/shared/@<application@> 631 * Solaris: /opt/@<application@> 623 632 * Windows: @<program files directory@>/@<application@> 624 633 * Old path: same as RTPathExecDir() … … 635 644 * 636 645 * Linux: /usr/lib/@<application@> 646 * Solaris: /opt/@<application@>/@<arch>@ or something 637 647 * Windows: @<program files directory@>/@<application@> 638 648 * Old path: same as RTPathExecDir() … … 645 655 646 656 /** 657 * Gets the toplevel directory for architecture-dependent application data. 658 * 659 * This differs from RTPathAppPrivateArch on Solaris only where it will work 660 * around the /opt/@<application@>/amd64 and /opt/@<application@>/i386 multi 661 * architecture installation style. 662 * 663 * Linux: /usr/lib/@<application@> 664 * Solaris: /opt/@<application@> 665 * Windows: @<program files directory@>/@<application@> 666 * Old path: same as RTPathExecDir() 667 * 668 * @returns iprt status code. 669 * @param pszPath Buffer where to store the path. 670 * @param cchPath Buffer size in bytes. 671 */ 672 RTDECL(int) RTPathAppPrivateArchTop(char *pszPath, size_t cchPath); 673 674 /** 647 675 * Gets the directory for documentation. 648 676 * 649 677 * Linux: /usr/share/doc/@<application@> 678 * Solaris: /opt/@<application@> 650 679 * Windows: @<program files directory@>/@<application@> 651 680 * Old path: same as RTPathExecDir()
Note:
See TracChangeset
for help on using the changeset viewer.