raze/source/exhumed/src/main.cpp
nukeykt 936ce5a866 wip
# Conflicts:
#	platform/Windows/exhumed.vcxproj
#	platform/Windows/exhumed.vcxproj.filters
2019-11-21 22:52:46 +01:00

29 lines
442 B
C++

#include "exhumed.h"
extern "C" {
#ifndef __WATCOMC__
#include "build.h"
#include "osd.h"
#include "baselayer.h"
#endif
void faketimerhandler(void)
{
}
#ifdef __WATCOMC__
void main(int argc, char *argv[])
{
ExhumedMain(argc, argv); // main function in exhumed.cpp
}
#else
int app_main(int argc, char *argv[])
{
wm_setapptitle("Exhumed/PowerSlave PC RE");
ExhumedMain(argc, argv); // main function in exhumed.cpp
return 0;
}
#endif
}