Staging
v0.5.1
https://github.com/python/cpython
Revision 24c2c20873dc800c99d1dabf26419b40cadfe627 authored by Victor Stinner on 16 June 2017, 15:30:03 UTC, committed by GitHub on 16 June 2017, 15:30:03 UTC
[2.7] bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest
1 parent 8bb0863
Raw File
Tip revision: 24c2c20873dc800c99d1dabf26419b40cadfe627 authored by Victor Stinner on 16 June 2017, 15:30:03 UTC
bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest (#2249)
Tip revision: 24c2c20
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