Staging
v0.5.1
https://github.com/python/cpython
Revision 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC, committed by R David Murray on 27 February 2013, 13:57:09 UTC
1 parent 5f79409
Raw File
Tip revision: 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC
#17296: backport fix for issue 1692335, naive exception pickling.
Tip revision: 1cb0cb2
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