Changeset 48528 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Sep 18, 2013 8:39:01 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89057
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vmapi.h
r46788 r48528 484 484 VMMR3DECL(int) VMR3HotPlugCpu(PUVM pUVM, VMCPUID idCpu); 485 485 VMMR3DECL(int) VMR3SetCpuExecutionCap(PUVM pUVM, uint32_t uCpuExecutionCap); 486 VMMR3DECL(int) VMR3SetPowerOffInsteadOfReset(PUVM pUVM, bool fPowerOffInsteadOfReset); 486 487 /** @} */ 487 488 #endif /* IN_RING3 */ -
trunk/include/VBox/vmm/vmm.h
r48230 r48528 222 222 DECLR3CALLBACKMEMBER(void, pfnNotifyPdmtTerm,(PCVMM2USERMETHODS pThis, PUVM pUVM)); 223 223 224 /** 225 * Notification callback that that a VM reset will be turned into a power off. 226 * 227 * @param pThis Pointer to the callback method table. 228 * @param pUVM The user mode VM handle. 229 * 230 * @remarks This is optional and shall be set to NULL if not wanted. 231 */ 232 DECLR3CALLBACKMEMBER(void, pfnNotifyResetTurnedIntoPowerOff,(PCVMM2USERMETHODS pThis, PUVM pUVM)); 233 224 234 /** Magic value (VMM2USERMETHODS_MAGIC) marking the end of the structure. */ 225 235 uint32_t u32EndMagic; … … 229 239 #define VMM2USERMETHODS_MAGIC UINT32_C(0x18830703) 230 240 /** The VMM2USERMETHODS structure version. */ 231 #define VMM2USERMETHODS_VERSION UINT32_C(0x0002000 0)241 #define VMM2USERMETHODS_VERSION UINT32_C(0x00020001) 232 242 233 243
Note:
See TracChangeset
for help on using the changeset viewer.