Staging
v0.5.1
https://github.com/python/cpython
Revision bc662c0bd7def052e9edbf504bb468860c83f371 authored by Andre Delfino on 01 December 2020, 09:45:11 UTC, committed by GitHub on 01 December 2020, 09:45:11 UTC
1 parent 80a429e
Raw File
Tip revision: bc662c0bd7def052e9edbf504bb468860c83f371 authored by Andre Delfino on 01 December 2020, 09:45:11 UTC
[doc] Fix abc.update_abstractmethods markup (GH-23576)
Tip revision: bc662c0
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