Set_Async_Time_Out
include vmm.inc
mov eax, TimeOut_Delay
mov edx, Reference_Data
mov esi, Async_Time_Out_Proc
VMMCall Set_Async_Time_Out
mov [TimeOut_Handle], esi
Schedules a time-out callback procedure that will be called after the specified length of time. Uses ESI, flags. This is an asynchronous service.
- If the time-out was scheduled, returns in ESI a handle that identifies it; otherwise, ESI is zero.
- TimeOut_Delay
- The specified number of milliseconds that must transpire before the time-out occurs.
- Reference_Data
- Data that's returned to the procedure.
- Async_Time_Out_Proc
- A callback procedure that is called when the time-out occurs.