Staging
v0.8.1
https://github.com/python/cpython
Revision 0607f731f26de1ae4fba3c880e5286f5418a5227 authored by Antoine Pitrou on 21 February 2012, 21:02:04 UTC, committed by Antoine Pitrou on 21 February 2012, 21:02:04 UTC
1 parent 6647113
Raw File
Tip revision: 0607f731f26de1ae4fba3c880e5286f5418a5227 authored by Antoine Pitrou on 21 February 2012, 21:02:04 UTC
Fix flaky os.urandom test.
Tip revision: 0607f73
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