2022-05-19 01:51:26 -07:00
|
|
|
#ifndef WIN32_H
|
|
|
|
#define WIN32_H
|
|
|
|
|
2022-05-29 12:08:13 -07:00
|
|
|
#ifdef _WIN32
|
2022-05-19 01:51:26 -07:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2022-05-28 04:45:48 -07:00
|
|
|
#define NOMINMAX
|
2022-05-19 01:51:26 -07:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
extern bool gProgramIsActive;
|
|
|
|
extern HANDLE _GNW95_mutex;
|
2022-05-29 12:08:13 -07:00
|
|
|
#else
|
|
|
|
extern bool gProgramIsActive;
|
|
|
|
#endif
|
2022-05-19 01:51:26 -07:00
|
|
|
|
|
|
|
#endif /* WIN32_H */
|