WAITORTIMERCALLBACK Function Pointer

Points to a function that notifies the host that a wait handle (WaitHandle) 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 wait handle timed out, or false if it was signaled.

Remarks

The function to which WAITORTIMERCALLBACK points is a callback function and must be implemented by the writer of the hosting application.

Requirements

Platforms: See .NET Framework System Requirements.

Header: MSCorEE.idl

Library: MSCorWks.dll

.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0

See Also

Other Resources

Hosting Global Static Functions