mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
compilefix for function declaration (win only)
This commit is contained in:
@ -153,8 +153,9 @@
|
|||||||
//#define GLFW_DLL // Using GLFW DLL on Windows -> No, we use static version!
|
//#define GLFW_DLL // Using GLFW DLL on Windows -> No, we use static version!
|
||||||
|
|
||||||
#if !defined(SUPPORT_BUSY_WAIT_LOOP) && defined(_WIN32)
|
#if !defined(SUPPORT_BUSY_WAIT_LOOP) && defined(_WIN32)
|
||||||
__stdcall unsigned int timeBeginPeriod(unsigned int uPeriod);
|
// NOTE: Those functions require linking with winmm library
|
||||||
__stdcall unsigned int timeEndPeriod(unsigned int uPeriod);
|
unsigned int __stdcall timeBeginPeriod(unsigned int uPeriod);
|
||||||
|
unsigned int __stdcall timeEndPeriod(unsigned int uPeriod);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user