fallout2-ce/src/win32.cc

47 lines
819 B
C++
Raw Normal View History

2022-05-19 01:51:26 -07:00
#include "win32.h"
#include "core.h"
#include "main.h"
#include "window_manager.h"
#include <SDL.h>
2022-05-29 10:07:43 -07:00
#include <stdlib.h>
2022-05-19 01:51:26 -07:00
2022-05-29 12:08:13 -07:00
#ifdef _WIN32
2022-05-19 01:51:26 -07:00
// 0x51E444
bool gProgramIsActive = false;
// GNW95MUTEX
HANDLE _GNW95_mutex = NULL;
// 0x4DE700
int main(int argc, char* argv[])
2022-05-19 01:51:26 -07:00
{
_GNW95_mutex = CreateMutexA(0, TRUE, "GNW95MUTEX");
if (GetLastError() == ERROR_SUCCESS) {
SDL_ShowCursor(SDL_DISABLE);
2022-05-19 01:51:26 -07:00
2022-07-12 02:09:53 -07:00
gProgramIsActive = true;
falloutMain(argc, argv);
2022-05-19 01:51:26 -07:00
2022-07-12 02:09:53 -07:00
CloseHandle(_GNW95_mutex);
2022-05-19 01:51:26 -07:00
}
2022-07-12 02:09:53 -07:00
return 0;
2022-05-19 01:51:26 -07:00
}
2022-05-29 12:08:13 -07:00
#else
bool gProgramIsActive = false;
int main(int argc, char* argv[])
{
2022-07-05 05:45:36 -07:00
#if __APPLE__
char* basePath = SDL_GetBasePath();
chdir(basePath);
SDL_free(basePath);
#endif
2022-05-29 12:08:13 -07:00
SDL_ShowCursor(SDL_DISABLE);
gProgramIsActive = true;
return falloutMain(argc, argv);
}
#endif