/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.14.2
PC/WinMain.c
17 строк
492 B
Victor Stinner
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
13 окт 2021, 20:25
Не верифицирован
13 окт 2021, 20:25
aac29af
Код
Авторство
О чём код?
/* Minimal main program -- everything is loaded from the library. */ #include "Python.h" #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <stdlib.h> /* __argc, __wargv */ 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); }