0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-01-01 15:31:13 +00:00
SRB2/tools/SRB2Launcher/launcher.c
2014-03-15 13:11:35 -04:00

19 lines
316 B
C

#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);
}