mirror of
https://gitee.com/openharmony/third_party_python
synced 2024-11-27 09:30:54 +00:00
0a53acf28f
Signed-off-by: flying <pengmengjie1@huawei.com>
18 lines
492 B
C
18 lines
492 B
C
/* 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);
|
|
}
|