Staging
v0.5.1
https://github.com/python/cpython
Revision 90bcdd71a5802faeb2d64f1d20914d01afb2f249 authored by Zachary Ware on 05 June 2014, 20:57:44 UTC, committed by Zachary Ware on 05 June 2014, 20:57:44 UTC
1 parent 7b02ef0
Raw File
Tip revision: 90bcdd71a5802faeb2d64f1d20914d01afb2f249 authored by Zachary Ware on 05 June 2014, 20:57:44 UTC
Issue #18292: s/tkinter/Tkinter/
Tip revision: 90bcdd7
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI WinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPSTR lpCmdLine,          /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __argv);
}
back to top