Staging
v0.5.1
https://github.com/python/cpython
Revision 05f1b93f5876ac970485ae008dd9ab3e8404f934 authored by Raymond Hettinger on 01 February 2019, 06:13:43 UTC, committed by GitHub on 01 February 2019, 06:13:43 UTC
1 parent ffdf1c3
Raw File
Tip revision: 05f1b93f5876ac970485ae008dd9ab3e8404f934 authored by Raymond Hettinger on 01 February 2019, 06:13:43 UTC
Speed-up argument parsing for common cases in deque.__init__()(GH-11717)
Tip revision: 05f1b93
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