| /** |
| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
| */ |
| |
| #ifndef _MMISCAPI2_H_ |
| #define _MMISCAPI2_H_ |
| |
| #include <apiset.h> |
| #include <apisetcconv.h> |
| |
| #include <mmsyscom.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) |
| |
| typedef void (CALLBACK TIMECALLBACK)(UINT uTimerID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2); |
| typedef TIMECALLBACK *LPTIMECALLBACK; |
| |
| #define TIME_ONESHOT 0x0000 |
| #define TIME_PERIODIC 0x0001 |
| |
| #define TIME_CALLBACK_FUNCTION 0x0000 |
| #define TIME_CALLBACK_EVENT_SET 0x0010 |
| #define TIME_CALLBACK_EVENT_PULSE 0x0020 |
| #define TIME_KILL_SYNCHRONOUS 0x0100 |
| |
| WINMMAPI MMRESULT WINAPI timeSetEvent(UINT uDelay, UINT uResolution, LPTIMECALLBACK fptc, DWORD_PTR dwUser, UINT fuEvent); |
| WINMMAPI MMRESULT WINAPI timeKillEvent(UINT uTimerID); |
| |
| #endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */ |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* _MMISCAPI2_H_ */ |