Staging
v0.8.1
https://github.com/python/cpython
Revision 75512c4556da5a8215a99c57e9a056f191ad9c99 authored by Martin v. Löwis on 02 March 2014, 18:15:47 UTC, committed by Martin v. Löwis on 02 March 2014, 18:15:47 UTC
1 parent d930d85
Raw File
Tip revision: 75512c4556da5a8215a99c57e9a056f191ad9c99 authored by Martin v. Löwis on 02 March 2014, 18:15:47 UTC
Issue #20568: Fix typo in pip option.
Tip revision: 75512c4
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