factor/vm/main-windows-ce.cpp

18 lines
342 B
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
#include "master.hpp"
int WINAPI WinMain(
2009-05-02 05:04:19 -04:00
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPWSTR lpCmdLine,
int nCmdShow)
{
int __argc;
wchar_t **__argv;
factor::parse_args(&__argc, &__argv, lpCmdLine);
factor::init_globals();
2009-05-04 02:46:13 -04:00
factor::start_standalone_factor(__argc,(LPWSTR*)__argv);
2009-05-02 05:04:19 -04:00
// memory leak from malloc, wcsdup
return 0;
}