summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/common/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-06-29 21:48:36 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-06-29 21:48:36 (GMT)
commitd436818deded4064c5476111f980189836b360c7 (patch)
tree940b271db3c6ffead608334a615114ed7ce1f29c /plugins/pychrysalide/common/module.c
parent7e397e656e983931085ee0d656945b2d8ca3ce5b (diff)
Included the packed buffers in the Python bindings.
Diffstat (limited to 'plugins/pychrysalide/common/module.c')
-rw-r--r--plugins/pychrysalide/common/module.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/pychrysalide/common/module.c b/plugins/pychrysalide/common/module.c
index 44c06c5..e8cda4f 100644
--- a/plugins/pychrysalide/common/module.c
+++ b/plugins/pychrysalide/common/module.c
@@ -27,6 +27,7 @@
#include "bits.h"
#include "fnv1a.h"
+#include "packed.h"
#include "pathname.h"
#include "../helpers.h"
@@ -89,6 +90,7 @@ bool populate_common_module(void)
if (result) result = ensure_python_bitfield_is_registered();
if (result) result = ensure_python_fnv1a_is_registered();
+ if (result) result = ensure_python_packed_buffer_is_registered();
if (result) result = ensure_python_pathname_is_registered();
assert(result);