]> git.tdb.fi Git - libs/core.git/blob - source/core/main.cpp
Assimilate exceptions and RefPtr from mspmisc
[libs/core.git] / source / core / main.cpp
1 /* $Id$
2
3 This file is part of libmspcore
4 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7 #ifdef WIN32
8 #include <windows.h>
9 #endif
10
11 #include "application.h"
12
13 #ifdef WIN32
14 int APIENTRY WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpCmdLine*/, int /*nCmdShow*/)
15
16         int argc        = 0;
17         LPWSTR *argv=CommandLineToArgvW(GetCommandLineW(), &argc);
18         return Msp::Application::run(argc, (char **)argv);
19 }
20 #endif
21
22 int main(int argc, char **argv)
23 { return Msp::Application::run(argc, argv); }