Staging
v0.5.1
https://github.com/python/cpython
Revision e1d5e543e445de65789be8ed0ae0fdabc6902f66 authored by Christian Heimes on 05 September 2013, 14:06:46 UTC, committed by Christian Heimes on 05 September 2013, 14:06:46 UTC
2 parent s 2d7aba3 + 34d2013
Raw File
Tip revision: e1d5e543e445de65789be8ed0ae0fdabc6902f66 authored by Christian Heimes on 05 September 2013, 14:06:46 UTC
merge
Tip revision: e1d5e54
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