Staging
v0.5.1
https://github.com/python/cpython
Revision d61d0733cbd6ee341cbc51cc42bc065654335e23 authored by Thomas Heller on 01 August 2006, 19:14:15 UTC, committed by Thomas Heller on 01 August 2006, 19:14:15 UTC
1 parent 07fec3a
Raw File
Tip revision: d61d0733cbd6ee341cbc51cc42bc065654335e23 authored by Thomas Heller on 01 August 2006, 19:14:15 UTC
Speed up PyType_stgdict and PyObject_stgdict.
Tip revision: d61d073
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "Python.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