TIMERPROC typedef callback

TIMERPROC = Void Function(Pointer<NativeType> param0, Uint32 param1, IntPtr param2, Uint32 param3)

An application-defined callback function that processes WM_TIMER messages.

The TIMERPROC type defines a pointer to this callback function. TimerProc is a placeholder for the application-defined function name.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nc-winuser-timerproc.

Implementation

typedef TIMERPROC =
    Void Function(Pointer param0, Uint32 param1, IntPtr param2, Uint32 param3);