Virtual Devices (3.1) (vdag31qh.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
VM_Resume
                                                     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