1
0
mirror of synced 2024-12-01 02:37:18 +01:00
ImHex/lib/libimhex/include/hex/helpers/loader_script_handler.hpp

35 lines
1011 B
C++
Raw Normal View History

2020-12-01 02:21:40 +01:00
#pragma once
#include <string>
#include <string_view>
#include <hex/helpers/paths.hpp>
2020-12-01 02:21:40 +01:00
struct _object;
typedef struct _object PyObject;
namespace hex {
namespace prv { class Provider; }
class LoaderScript {
public:
LoaderScript() = delete;
static bool processFile(const fs::path &scriptPath);
2020-12-01 02:21:40 +01:00
static void setFilePath(const fs::path &filePath) { LoaderScript::s_filePath = filePath; }
2020-12-01 02:21:40 +01:00
static void setDataProvider(prv::Provider* provider) { LoaderScript::s_dataProvider = provider; }
private:
static inline fs::path s_filePath;
2020-12-01 02:21:40 +01:00
static inline prv::Provider* s_dataProvider;
static PyObject* Py_getFilePath(PyObject *self, PyObject *args);
static PyObject* Py_addPatch(PyObject *self, PyObject *args);
static PyObject* Py_addBookmark(PyObject *self, PyObject *args);
static PyObject* Py_addStruct(PyObject *self, PyObject *args);
static PyObject* Py_addUnion(PyObject *self, PyObject *args);
2020-12-01 02:21:40 +01:00
};
}