Added create_struct and create_union function to Python API

This commit is contained in:
WerWolv
2020-12-01 16:41:38 +01:00
parent c6134bc038
commit 17096055f8
4 changed files with 116 additions and 7 deletions

View File

@@ -25,6 +25,9 @@ namespace hex {
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);
};
}