Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 69e6ad6cdfa28a7b8e7b8780b07dfcdbfb0e7030 authored by Miss Islington (bot) on 11 October 2018, 05:37:37 UTC
[3.6] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods (GH-9751) (GH-9798) (GH-9801)
Tip revision: 69e6ad6
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