mirror of https://github.com/daleclack/My_GtkUi
Fix build for windows
This commit is contained in:
parent
0e89909902
commit
d9fdaffd4e
|
@ -14,6 +14,11 @@
|
|||
#include <thread>
|
||||
#include <cstdlib>
|
||||
|
||||
// Fix NAME_MAX macro for Microsoft Windows
|
||||
#ifdef _WIN32
|
||||
#define NAME_MAX _MAX_PATH
|
||||
#endif
|
||||
|
||||
typedef unsigned short ushort;
|
||||
|
||||
enum PadPage
|
||||
|
|
Loading…
Reference in New Issue