0ad/source/tools/atlas/AtlasFrontends/FileConverter.cpp
Ykkrosh f791a61c46 # Fixed SxS CRT usage.
Also added wx's .rc file to Atlas.

This was SVN commit r3812.
2006-04-24 18:01:01 +00:00

15 lines
471 B
C++

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
// Use WinXP-style controls
#pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='6595b64144ccf1df'\"")
#define ATLASDLLIMPEXP extern "C" __declspec(dllimport)
#include "AtlasUI/Misc/DLLInterface.h"
int APIENTRY wWinMain(HINSTANCE, HINSTANCE, LPTSTR, int) {
Atlas_StartWindow(L"FileConverter");
return 0;
}