Changeset 11822 in vbox for trunk/include
- Timestamp:
- Aug 29, 2008 2:21:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/initterm.h
r11794 r11822 46 46 #ifdef IN_RING3 47 47 /** 48 * Init alizes the runtime library.48 * Initializes the runtime library. 49 49 * 50 50 * @returns iprt status code. 51 */ 52 RTR3DECL(int) RTR3Init(void); 53 54 /** 55 * Initializes the runtime library and try initialize SUPLib too. 51 56 * 52 * @param fInitSUPLib Set if SUPR3Init() shall be called during init (default). 53 * Clear if not to call it. 54 * @param cbReserve Ignored. 57 * @returns IPRT status code. 58 * @param pszProgramPath The path to the program file. 59 * 60 * @remarks Failure to initialize SUPLib is ignored. 55 61 */ 56 RTR3DECL(int) RTR3Init( 57 #ifdef __cplusplus 58 bool fInitSUPLib = true, 59 size_t cbReserve = 0 60 #else 61 bool fInitSUPLib, 62 size_t cbReserve 63 #endif 64 ); 62 RTR3DECL(int) RTR3InitAndSUPLib(void); 63 64 /** 65 * Initializes the runtime library passing it the program path. 66 * 67 * @returns IPRT status code. 68 * @param pszProgramPath The path to the program file. 69 */ 70 RTR3DECL(int) RTR3InitWithProgramPath(const char *pszProgramPath); 71 72 /** 73 * Initializes the runtime library passing it the program path, 74 * and try initialize SUPLib too (failures ignored). 75 * 76 * @returns IPRT status code. 77 * @param pszProgramPath The path to the program file. 78 * 79 * @remarks Failure to initialize SUPLib is ignored. 80 */ 81 RTR3DECL(int) RTR3InitAndSUPLibWithProgramPath(const char *pszProgramPath); 65 82 66 83 /** … … 68 85 */ 69 86 RTR3DECL(void) RTR3Term(void); 70 #endif 87 88 #endif /* IN_RING3 */ 71 89 72 90
Note:
See TracChangeset
for help on using the changeset viewer.