diff options
Diffstat (limited to 'PC/WinMain.c')
-rw-r--r-- | PC/WinMain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/WinMain.c b/PC/WinMain.c index e439bed..2cdd0cb 100644 --- a/PC/WinMain.c +++ b/PC/WinMain.c @@ -5,12 +5,12 @@ #define WIN32_LEAN_AND_MEAN #include <windows.h> -int WINAPI wWinMain( +int WINAPI WinMain( HINSTANCE hInstance, /* handle to current instance */ HINSTANCE hPrevInstance, /* handle to previous instance */ - LPWSTR lpCmdLine, /* pointer to command line */ + LPSTR lpCmdLine, /* pointer to command line */ int nCmdShow /* show state of window */ ) { - return Py_Main(__argc, __wargv); + return Py_Main(__argc, __argv); } |