◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── include vmm.inc mov ebx, VM ; VM handle mov eax, VM_Resume VMMcall System_Control The VM_Resume message notifies the virtual device that the virtual machine is resuming after having been suspended. The virtual device should lock any resources, and prepare internal data structures for the virtual machine to start running again. Parameter Description ──────────────────────────────────────────────────────────────────────────── VM Specifies a handle identifying the virtual machine to resume. Return Value The carry flag is clear if the virtual device can support resumption of the virtual machine. Otherwise, the carry flag is set to prevent the system from resuming the virtual machine. Comments The system never sends the VM_Resume message without having first sent a VM_Suspend message. Uses Flags See Also VM_Suspend ♦