Staging
v0.8.1
https://github.com/python/cpython
Revision 80a429eae95c15c2c2a6753376f2697c90c2b6b9 authored by Andre Delfino on 01 December 2020, 09:41:12 UTC, committed by GitHub on 01 December 2020, 09:41:12 UTC
1 parent 32bd68c
Raw File
Tip revision: 80a429eae95c15c2c2a6753376f2697c90c2b6b9 authored by Andre Delfino on 01 December 2020, 09:41:12 UTC
Fix bz2 examples markup (#23580)
Tip revision: 80a429e
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