Staging
v0.5.1
https://github.com/python/cpython
Revision b6596c516bcb4de4abf5722159d9aa3bff680173 authored by Benjamin Peterson on 21 February 2012, 13:08:29 UTC, committed by Benjamin Peterson on 21 February 2012, 13:08:29 UTC
1 parent 4ab701b
Raw File
Tip revision: b6596c516bcb4de4abf5722159d9aa3bff680173 authored by Benjamin Peterson on 21 February 2012, 13:08:29 UTC
remove extra zero
Tip revision: b6596c5
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