Staging
v0.5.1
https://github.com/python/cpython
Revision 526606baf76e7a5309bb00f3bfaefa861a2014ba authored by Batuhan Taşkaya on 08 December 2019, 20:31:15 UTC, committed by Miss Islington (bot) on 08 December 2019, 20:31:15 UTC
1 parent cd90a52
Raw File
Tip revision: 526606baf76e7a5309bb00f3bfaefa861a2014ba authored by Batuhan Taşkaya on 08 December 2019, 20:31:15 UTC
bpo-38994: Implement __class_getitem__ for PathLike (GH-17498)
Tip revision: 526606b
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