diff options
| author | Camille Mougey <commial@gmail.com> | 2015-04-22 19:12:10 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-04-22 19:12:10 +0200 |
| commit | f137c8b663d03623780532bb120c9238d69d1482 (patch) | |
| tree | 68f6d538a9ef16edc7aa5730320796d550c5cd91 /miasm2/jitter/vm_mngr_py.h | |
| parent | 9039f508b2e2d407495d1ab6f74cc78cc891f822 (diff) | |
| parent | 5699ee60b9052a936fa1e511a4cc455cfe8b8dc4 (diff) | |
| download | miasm-f137c8b663d03623780532bb120c9238d69d1482.tar.gz miasm-f137c8b663d03623780532bb120c9238d69d1482.zip | |
Merge pull request #142 from serpilliere/automod
Automod
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/vm_mngr_py.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/miasm2/jitter/vm_mngr_py.h b/miasm2/jitter/vm_mngr_py.h new file mode 100644 index 00000000..3c7c487b --- /dev/null +++ b/miasm2/jitter/vm_mngr_py.h @@ -0,0 +1,13 @@ +#ifndef VM_MNGR_PY_H +#define VM_MNGR_PY_H + + + +typedef struct { + PyObject_HEAD + PyObject *vmmngr; + vm_mngr_t vm_mngr; +} VmMngr; + + +#endif// VM_MNGR_PY_H |