Staging
v0.8.1
https://github.com/python/cpython
Revision e948ea01eb6635d544a2100ceeb18933b6e37753 authored by Barry Warsaw on 01 October 2009, 23:39:49 UTC, committed by Barry Warsaw on 01 October 2009, 23:39:49 UTC
1 parent d8c40c1
Raw File
Tip revision: e948ea01eb6635d544a2100ceeb18933b6e37753 authored by Barry Warsaw on 01 October 2009, 23:39:49 UTC
Bump to 2.6.3
Tip revision: e948ea0
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