1
0
forked from metin2/client

Solution refactoring and restructuring, removed Boost dependency, removed unused tools

This commit is contained in:
2022-11-21 23:42:01 +02:00
parent 33f19f9ff6
commit 9ef9f39e88
817 changed files with 326 additions and 59698 deletions

View File

@ -0,0 +1,25 @@
#pragma once
#include <python2.7/frameobject.h>
#include "../eterBase/Singleton.h"
class CPythonLauncher : public CSingleton<CPythonLauncher>
{
public:
CPythonLauncher();
virtual ~CPythonLauncher();
void Clear();
bool Create(const char* c_szProgramName="eter.python");
void SetTraceFunc(int (*pFunc)(PyObject * obj, PyFrameObject * f, int what, PyObject *arg));
bool RunLine(const char* c_szLine);
bool RunFile(const char* c_szFileName);
bool RunMemoryTextFile(const char* c_szFileName, UINT uFileSize, const VOID* c_pvFileData);
bool RunCompiledFile(const char* c_szFileName);
const char* GetError();
protected:
PyObject* m_poModule;
PyObject* m_poDic;
};