You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* This initializes the table of loaded modules (sys.modules), and creates the fundamental modules builtins, __main__ and sys. It also initializes the module search path (sys.path). It does not set sys.argv; */
EXTDECLPROC(int, Py_Initialize, (void));
/* Undo all initializations made by Py_Initialize() and subsequent use of Python/C API functions, and destroy all sub-interpreters. */
EXTDECLPROC(int, Py_Finalize, (void));
EXTDECLPROC(void, Py_IncRef, (PyObject*));
EXTDECLPROC(void, Py_DecRef, (PyObject*));
/*
* These functions have to be called before Py_Initialize()
*/
EXTDECLPROC(void, Py_SetProgramName, (wchar_t*));
EXTDECLPROC(void, Py_SetPythonHome, (wchar_t*));
EXTDECLPROC(void, Py_SetPath, (wchar_t*)); /* new in Python 3 */
EXTDECLPROC(wchar_t*, Py_GetPath, (void)); /* new in Python 3 */