Staging
v0.8.1
Revision 69b747b7358780c84d1cac1317bfb7d5baa4e6e3 authored by Amaury Forgeot d'Arc on 28 March 2008, 20:30:50 UTC, committed by Amaury Forgeot d'Arc on 28 March 2008, 20:30:50 UTC
Now "regrtest.py -R:: test_compile" is satisfied.

Will backport.
1 parent aa5fbdd
Raw File
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