blob: 5ce140cc16ca5210cae074284d7291480b719d18 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <windows.h>
#include "setup.h"
#define _CRT_SECURE_NO_DEPRECATE
int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
SPY_Setup();
return 0;
}
|