Changeset 6581 in vbox for trunk/include/VBox
- Timestamp:
- Jan 29, 2008 11:53:36 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27635
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/gmm.h
r5999 r6581 49 49 #else 50 50 # define GMMR0DECL(type) DECLIMPORT(type) VBOXCALL 51 #endif 52 53 /** @def IN_GMM_R3 54 * Used to indicate whether we're inside the same link module as the ring 3 55 * part of the Global Memory Manager or not. 56 */ 57 /** @def GMMR3DECL 58 * Ring 3 GMM export or import declaration. 59 * @param type The return type of the function declaration. 60 */ 61 #ifdef IN_GMM_R3 62 # define GMMR3DECL(type) DECLEXPORT(type) VBOXCALL 63 #else 64 # define GMMR3DECL(type) DECLIMPORT(type) VBOXCALL 51 65 #endif 52 66 … … 236 250 237 251 252 GMMR3DECL(int) GMMR3InitialReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages, 253 GMMOCPOLICY enmPolicy, GMMPRIORITY enmPriority); 254 GMMR3DECL(int) GMMR3UpdateReservation(PVM pVM, uint64_t cBasePages, uint32_t cShadowPages, uint32_t cFixedPages); 255 GMMR3DECL(int) GMMR3DeflatedBalloon(PVM pVM, uint32_t cPages); 256 GMMR3DECL(int) GMMR3MapUnmapChunk(PVM pVM, uint32_t idChunkMap, uint32_t idChunkUnmap, PRTR3PTR ppvR3); 257 GMMR3DECL(int) GMMR3SeedChunk(PVM pVM, RTR3PTR pvR3); 258 259 260 238 261 /** 239 262 * Request buffer for GMMR0InitialReservationReq / VMMR0_DO_GMM_INITIAL_RESERVATION.
Note:
See TracChangeset
for help on using the changeset viewer.