3 This file is part of libmspcore
4 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
11 #include "application.h"
14 int APIENTRY WinMain(HINSTANCE /*hInstance*/, HINSTANCE /*hPrevInstance*/, LPSTR /*lpCmdLine*/, int /*nCmdShow*/)
17 LPWSTR *argv=CommandLineToArgvW(GetCommandLineW(), &argc);
18 return Msp::Application::run(argc, (char **)argv);
22 int main(int argc, char **argv)
23 { return Msp::Application::run(argc, argv); }