Staging
v0.5.1
https://github.com/python/cpython
Revision 3b65fd7e9784967567e66bd67e9205cbb0d53d3a authored by Georg Brandl on 23 January 2012, 19:19:33 UTC, committed by Georg Brandl on 23 January 2012, 19:19:33 UTC
1 parent beca27a
Raw File
Tip revision: 3b65fd7e9784967567e66bd67e9205cbb0d53d3a authored by Georg Brandl on 23 January 2012, 19:19:33 UTC
#13816: fix two minor style issues. Thanks to Justin Wehnes for the patch.
Tip revision: 3b65fd7
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