Staging
v0.5.1
https://github.com/python/cpython
Revision b9744e924ca07ba7db977e5958b91cd8db565632 authored by Serhiy Storchaka on 23 March 2018, 12:35:33 UTC, committed by GitHub on 23 March 2018, 12:35:33 UTC
1 parent c71edab
Raw File
Tip revision: b9744e924ca07ba7db977e5958b91cd8db565632 authored by Serhiy Storchaka on 23 March 2018, 12:35:33 UTC
bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154)
Tip revision: b9744e9
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