Changeset 44374 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jan 25, 2013 12:29:24 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/ftm.h
r35361 r44374 41 41 typedef enum FTMCHECKPOINTTYPE 42 42 { 43 FTMCHECKPOINTTYPE_INVALID = 0, 43 44 FTMCHECKPOINTTYPE_NETWORK, 44 45 FTMCHECKPOINTTYPE_STORAGE, 46 FTMCHECKPOINTTYPE_END, 45 47 FTMCHECKPOINTTYPE_32BIT_HACK = 0x7fffffff 46 48 } FTMCHECKPOINTTYPE; 47 49 48 VMM DECL(bool) FTMIsDeltaLoadSaveActive(PVM pVM);49 VMM DECL(int) FTMSetCheckpoint(PVM pVM, FTMCHECKPOINTTYPE enmType);50 VMM_INT_DECL(bool) FTMIsDeltaLoadSaveActive(PVM pVM); 51 VMM_INT_DECL(int) FTMSetCheckpoint(PVM pVM, FTMCHECKPOINTTYPE enmType); 50 52 51 53 #ifdef IN_RING3 … … 54 56 * @{ 55 57 */ 56 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fMaster, unsigned uInterval, const char *pszAddress, unsigned uPort, const char *pszPassword); 57 VMMR3DECL(int) FTMR3Init(PVM pVM); 58 VMMR3DECL(int) FTMR3Term(PVM pVM); 59 VMMR3DECL(int) FTMR3CancelStandby(PVM pVM); 60 VMMR3DECL(int) FTMR3SetCheckpoint(PVM pVM, FTMCHECKPOINTTYPE enmType); 58 VMMR3DECL(int) FTMR3PowerOn(PUVM pUVM, bool fMaster, unsigned uInterval, const char *pszAddress, unsigned uPort, const char *pszPassword); 59 VMMR3DECL(int) FTMR3CancelStandby(PUVM pUVM); 60 61 VMMR3_INT_DECL(int) FTMR3Init(PVM pVM); 62 VMMR3_INT_DECL(int) FTMR3Term(PVM pVM); 63 VMMR3_INT_DECL(int) FTMR3SetCheckpoint(PVM pVM, FTMCHECKPOINTTYPE enmType); 61 64 62 65 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.