0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-01-08 11:00:52 +00:00
SRB2/tools/SRB2Launcher/launcher.c

20 lines
316 B
C
Raw Normal View History

2014-03-15 16:59:03 +00:00
#include <windows.h>
#include "launcher.h"
int WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpvReserved)
{
return TRUE;
}
void CONS_Printf(char *fmt, ...)
{
MessageBox(NULL, fmt, "Master Server", 0);
}
void I_Error (char *error, ...)
{
MessageBox(NULL, error, "Master Server", MB_ICONERROR);
}