Changeset 32189 in vbox for trunk/include/VBox
- Timestamp:
- Sep 2, 2010 10:10:47 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r30195 r32189 3102 3102 3103 3103 /** 3104 * Suspends, saves and powers off the VM. 3105 * 3106 * @returns The appropriate VBox status code to pass around. 3107 * @param pDevIns The device instance. 3108 * @thread An emulation thread. 3109 */ 3110 DECLR3CALLBACKMEMBER(int, pfnVMSuspendSaveAndPowerOff,(PPDMDEVINS pDevIns)); 3111 3112 /** 3104 3113 * Power off the VM. 3105 3114 * … … 4402 4411 4403 4412 /** 4413 * @copydoc PDMDEVHLPR3::pfnVMSuspendSaveAndPowerOff 4414 */ 4415 DECLINLINE(int) PDMDevHlpVMSuspendSaveAndPowerOff(PPDMDEVINS pDevIns) 4416 { 4417 return pDevIns->pHlpR3->pfnVMSuspendSaveAndPowerOff(pDevIns); 4418 } 4419 4420 /** 4404 4421 * @copydoc PDMDEVHLPR3::pfnVMPowerOff 4405 4422 */
Note:
See TracChangeset
for help on using the changeset viewer.