Changeset 28434 in vbox for trunk/include
- Timestamp:
- Apr 17, 2010 6:08:28 PM (15 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r28402 r28434 91 91 uint32_t u32PID; 92 92 /* The process status. */ 93 uint32_t u32Status; 93 uint32_t u32Status; 94 94 /** Optional flags (not used atm). */ 95 95 uint32_t u32Flags; … … 98 98 /** Size of optional data buffer (not used atm). */ 99 99 uint32_t cbData; 100 100 101 101 } HOSTEXECCALLBACKDATA, *PHOSTEXECCALLBACKDATA; 102 102 -
trunk/include/VBox/VMMDev.h
r28415 r28434 1071 1071 * Shared region description 1072 1072 */ 1073 typedef struct 1073 typedef struct 1074 1074 { 1075 1075 RTGCPTR64 GCRegionAddr; … … 1084 1084 * Shared module registration 1085 1085 */ 1086 typedef struct 1086 typedef struct 1087 1087 { 1088 1088 /** Header. */ … … 1107 1107 * Shared module unregistration 1108 1108 */ 1109 typedef struct 1109 typedef struct 1110 1110 { 1111 1111 /** Header. */ -
trunk/include/VBox/gmm.h
r28422 r28434 533 533 GMMR3DECL(int) GMMR3BalloonedPages(PVM pVM, GMMBALLOONACTION enmAction, uint32_t cBalloonedPages); 534 534 GMMR3DECL(int) GMMR3QueryVMMMemoryStats(PVM pVM, uint64_t *pcTotalAllocPages, uint64_t *pcTotalFreePages, uint64_t *pcTotalBalloonPages); 535 GMMR3DECL(int) GMMR3RegisterSharedModule(PVM pVM, char *pszModuleName, char *pszVersion, RTGCPTR GCBaseAddr, uint32_t cbModule, 535 GMMR3DECL(int) GMMR3RegisterSharedModule(PVM pVM, char *pszModuleName, char *pszVersion, RTGCPTR GCBaseAddr, uint32_t cbModule, 536 536 unsigned cRegions, VMMDEVSHAREDREGIONDESC *pRegions); 537 537 GMMR3DECL(int) GMMR3UnregisterSharedModule(PVM pVM, char *pszModuleName, char *pszVersion, RTGCPTR GCBaseAddr, uint32_t cbModule);
Note:
See TracChangeset
for help on using the changeset viewer.