Staging
v0.5.1
https://github.com/python/cpython
Revision c266736ec1f9ebef38b134ceb4832df015711b38 authored by Ethan Furman on 07 December 2020, 08:17:31 UTC, committed by GitHub on 07 December 2020, 08:17:31 UTC
1 parent 2123373
Raw File
Tip revision: c266736ec1f9ebef38b134ceb4832df015711b38 authored by Ethan Furman on 07 December 2020, 08:17:31 UTC
bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487)
Tip revision: c266736
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