https://github.com/python/cpython
Revision dad57e9331ee27b68256733af13e403016d400c6 authored by Srinivas Reddy Thatiparthy on 16 November 2018, 05:38:30 UTC, committed by Srinivas Reddy Thatiparthy on 16 November 2018, 14:21:40 UTC
1 parent 4edeaea
Raw File
Tip revision: dad57e9331ee27b68256733af13e403016d400c6 authored by Srinivas Reddy Thatiparthy on 16 November 2018, 05:38:30 UTC
bpo-35202 : Remove unused imports
Tip revision: dad57e9
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