Staging
v0.8.1
https://github.com/python/cpython
Revision 3ec9d019013a9e9125d4f8669be177b9154cb45b authored by Senthil Kumaran on 03 December 2020, 03:48:14 UTC, committed by GitHub on 03 December 2020, 03:48:14 UTC
1 parent 5291639
Raw File
Tip revision: 3ec9d019013a9e9125d4f8669be177b9154cb45b authored by Senthil Kumaran on 03 December 2020, 03:48:14 UTC
Remove the conditional for setting query. (#23604)
Tip revision: 3ec9d01
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