fallout2-ce/src/win32.h

20 lines
258 B
C
Raw Normal View History

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
#include <windows.h>
2022-09-23 05:43:44 -07:00
#endif
namespace fallout {
2022-05-19 01:51:26 -07:00
2022-09-23 05:43:44 -07:00
#ifdef _WIN32
2022-05-19 01:51:26 -07:00
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
2022-09-23 05:43:44 -07:00
} // namespace fallout
2022-05-19 01:51:26 -07:00
#endif /* WIN32_H */