fallout2-ce/src/win32.h
Alexander Batalov 81b9345303 Update config
2023-02-18 19:06:20 +03:00

20 lines
258 B
C++

#ifndef WIN32_H
#define WIN32_H
#ifdef _WIN32
#include <windows.h>
#endif
namespace fallout {
#ifdef _WIN32
extern bool gProgramIsActive;
extern HANDLE _GNW95_mutex;
#else
extern bool gProgramIsActive;
#endif
} // namespace fallout
#endif /* WIN32_H */