blob: 513f5eb44979d1a80d4f8b3a7f0d6e90c203e665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <cpl.h>
#include "resource.h"
#include "config_dialog.h"
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pCmdLine, int nCmdShow)
{
initAdlSetupBox(hInstance, NULL);
runAdlSetupBox(hInstance, NULL);
return 0;
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(pCmdLine);
UNREFERENCED_PARAMETER(nCmdShow);
}
|