Lines Matching refs:hinstPython
464 static HINSTANCE hinstPython = 0; // Instance of python.dll variable
687 if (hinstPython) in python_runtime_link_init()
689 hinstPython = load_dll(libname); in python_runtime_link_init()
690 if (!hinstPython) in python_runtime_link_init()
699 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython, in python_runtime_link_init()
702 close_dll(hinstPython); in python_runtime_link_init()
703 hinstPython = 0; in python_runtime_link_init()
712 *ucs_as_encoded_string = symbol_from_dll(hinstPython, in python_runtime_link_init()
715 *ucs_as_encoded_string = symbol_from_dll(hinstPython, in python_runtime_link_init()
719 close_dll(hinstPython); in python_runtime_link_init()
720 hinstPython = 0; in python_runtime_link_init()
876 if (hinstPython && Py_IsInitialized()) in python_end()
904 return (hinstPython != 0); in python_loaded()