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