Staging
v0.5.1
https://github.com/python/cpython
Revision a3c2c5f15ba5b4ad6fb86b3320d0464f1c502fd2 authored by Miss Islington (bot) on 20 February 2020, 18:37:23 UTC, committed by GitHub on 20 February 2020, 18:37:23 UTC
(cherry picked from commit 1246d892038a693304549f8574e6c2784b91589a)

Co-authored-by: Stefan Krah <skrah@bytereef.org>

Co-authored-by: Stefan Krah <skrah@bytereef.org>
1 parent 2574910
Raw File
Tip revision: a3c2c5f15ba5b4ad6fb86b3320d0464f1c502fd2 authored by Miss Islington (bot) on 20 February 2020, 18:37:23 UTC
Use the new recommended number of repetitions in the refleak tests. (GH-18569) (#18575)
Tip revision: a3c2c5f
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