Staging
v0.5.1
https://github.com/python/cpython
Revision 88b215e20fae580c21ca103336c05e2be88cb565 authored by Victor Stinner on 03 September 2014, 22:51:09 UTC, committed by Victor Stinner on 03 September 2014, 22:51:09 UTC
1 parent 57004c6
Raw File
Tip revision: 88b215e20fae580c21ca103336c05e2be88cb565 authored by Victor Stinner on 03 September 2014, 22:51:09 UTC
Issue #21440: test_zipfile: replace last direct calls to os.remove() with
Tip revision: 88b215e
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#include "Python.h"

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

int WINAPI wWinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPWSTR lpCmdLine,         /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __wargv);
}
back to top