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.
Destroy_VM
                                                     Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
include vmm.inc
 
mov     ebx, VM         ; VM handle
mov     eax, Destroy_VM
VMMcall System_Control
 
The Destroy_VM message notifies the virtual device that the system has
destroyed the virtual machine. Virtual devices typically remove any data
associated with the specified virtual machine.
 
Parameter  Description
────────────────────────────────────────────────────────────────────────────
 
VM         Specifies a handle identifying the virtual machine to destroy.
 
Return Value
 
The carry flag must be clear.
 
Comments
 
The virtual device must not call the Simulate_Int or Exec_Int service in the
specified virtual machine.
 
Considerable time can elapse between receipt of the VM_Not_Executeable
message and this message.
 
Uses
 
Flags
 
See Also
 
Create_VM, VM_Not_Executeable
 
 
                                      ♦