Staging
v0.8.1
https://github.com/python/cpython
Revision f5a19ead4ba8c81cc27d5a530f830f4709ce240e authored by Soumendra Ganguly on 27 November 2020, 10:16:41 UTC, committed by GitHub on 27 November 2020, 10:16:41 UTC
1 parent c8aaf71
Raw File
Tip revision: f5a19ead4ba8c81cc27d5a530f830f4709ce240e authored by Soumendra Ganguly on 27 November 2020, 10:16:41 UTC
bpo-41818: Make test_openpty() avoid unexpected success due to number of rows and/or number of columns being == 0. (GH-23526)
Tip revision: f5a19ea
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