WAITORTIMERCALLBACK Function Pointer
.NET Framework 2.0
Points to a function that notifies the host that a wait handle has either been signaled or timed out.
typedef VOID (__stdcall *WAITORTIMERCALLBACK) (
[in] PVOID lpParameter,
[in] BOOL TimerOrWaitFired
);
Parameters
- lpParameter
-
[in] A pointer to an object that contains information defined by the host.
- TimerOrWaitFired
-
[in] true if the WaitHandle timed out, or false if it was signaled.