Staging
v0.5.1
https://github.com/python/cpython
Revision 75f187478603de33c15f501a947207bfe8ba833f authored by Miss Islington (bot) on 20 December 2018, 20:50:00 UTC, committed by Ned Deily on 20 December 2018, 20:50:00 UTC
(cherry picked from commit bdabb0737c631835b246c9823852d20331243315)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent a21bedf
Raw File
Tip revision: 75f187478603de33c15f501a947207bfe8ba833f authored by Miss Islington (bot) on 20 December 2018, 20:50:00 UTC
bpo-35475: Add more PyImport* functions in refcounts.dat. (GH-11142) (GH-11199)
Tip revision: 75f1874
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