LunaTranslator/cpp/exec/PyStand.h

49 lines
1.1 KiB
C
Raw Normal View History

2024-05-01 14:59:50 +08:00
//=====================================================================
//
// PyStand.h -
//
// Created by skywind on 2022/02/03
// Last Modified: 2022/02/03 23:39:52
//
//=====================================================================
#ifndef _PYSTAND_H_
#define _PYSTAND_H_
//---------------------------------------------------------------------
// PyStand
//---------------------------------------------------------------------
class PyStand
{
public:
virtual ~PyStand();
PyStand(const wchar_t *runtime);
public:
int RunString(const wchar_t *script);
int DetectScript();
protected:
bool CheckEnviron(const wchar_t *rtp);
bool LoadPython();
protected:
typedef int (*t_Py_Main)(int argc, wchar_t **argv);
t_Py_Main _Py_Main;
protected:
HINSTANCE _hDLL;
std::wstring _args; // arguments
std::wstring _pystand; // absolute path of pystand
std::wstring _runtime; // absolute path of embedded python runtime
std::wstring _home; // home directory of PyStand.exe
std::wstring _script; // init script like PyStand.int or PyStand.py
std::vector<std::wstring> _argv;
std::vector<std::wstring> _py_argv;
std::vector<wchar_t*> _py_args;
};
#endif