1 Star 0 Fork 1

lege/PyStand

forked from lj6525/PyStand 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
PyStand.h 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
skywind3000 提交于 2022-02-09 04:49 +08:00 . fixed: python local environment issues
//=====================================================================
//
// PyStand.h -
//
// Created by skywind on 2022/02/03
// Last Modified: 2022/02/03 23:39:52
//
//=====================================================================
#ifndef _PYSTAND_H_
#define _PYSTAND_H_
#include <stdio.h>
#include <windows.h>
#include <shlwapi.h>
#include <string>
#include <vector>
//---------------------------------------------------------------------
// PyStand
//---------------------------------------------------------------------
class PyStand
{
public:
virtual ~PyStand();
PyStand(const wchar_t *runtime);
PyStand(const char *runtime);
public:
std::wstring Ansi2Unicode(const char *text);
int RunString(const wchar_t *script);
int RunString(const char *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 _cwd; // current working directory
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/shareceo/PyStand.git
git@gitee.com:shareceo/PyStand.git
shareceo
PyStand
PyStand
master

搜索帮助