20 lines
443 B
C++
20 lines
443 B
C++
|
#include "main.h"
|
||
|
#include "include/Utils/Utils.h"
|
||
|
|
||
|
#include "boost/property_tree/ptree.hpp"
|
||
|
#include "boost/property_tree/xml_parser.hpp"
|
||
|
#include <set>
|
||
|
#include "boost/foreach.hpp"
|
||
|
|
||
|
|
||
|
extern boost::shared_ptr<TMyApplication> App;
|
||
|
|
||
|
int APIENTRY WinMain(HINSTANCE hCurrentInst, HINSTANCE hPreviousInst,
|
||
|
LPSTR lpszCmdLine, int nCmdShow)
|
||
|
{
|
||
|
App->Height = 480;
|
||
|
App->Width = 800;
|
||
|
|
||
|
//Start application
|
||
|
return MainLoop(*App);
|
||
|
}
|