Staging
v0.8.1
https://github.com/python/cpython
Revision ce34687d23bb68df1270728372f04ac7c80f3caa authored by Nick Coghlan on 22 September 2013, 09:38:16 UTC, committed by Nick Coghlan on 22 September 2013, 09:38:16 UTC
1 parent 31f477c
Raw File
Tip revision: ce34687d23bb68df1270728372f04ac7c80f3caa authored by Nick Coghlan on 22 September 2013, 09:38:16 UTC
Fix comment in test_gdb
Tip revision: ce34687
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI wWinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPWSTR lpCmdLine,         /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __wargv);
}
back to top