Changeset 11794 in vbox for trunk/include/VBox/sup.h
- Timestamp:
- Aug 29, 2008 9:13:37 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r11725 r11794 341 341 /** 342 342 * Initializes the support library. 343 * Each succesful call to SUP Init() must be countered by a343 * Each succesful call to SUPR3Init() must be countered by a 344 344 * call to SUPTerm(false). 345 345 * 346 346 * @returns VBox status code. 347 347 * @param ppSession Where to store the session handle. Defaults to NULL. 348 * @param cbReserve The number of bytes of contiguous memory that should be reserved by 349 * the runtime / support library. 350 * Set this to 0 if no reservation is required. (default) 351 * Set this to ~0 if the maximum amount supported by the VM is to be 352 * attempted reserved, or the maximum available. 353 */ 354 #ifdef __cplusplus 355 SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession = NULL, size_t cbReserve = 0); 356 #else 357 SUPR3DECL(int) SUPInit(PSUPDRVSESSION *ppSession, size_t cbReserve); 358 #endif 348 */ 349 SUPR3DECL(int) SUPR3Init(PSUPDRVSESSION *ppSession); 359 350 360 351 /**
Note:
See TracChangeset
for help on using the changeset viewer.