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