summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/format/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-11-15 10:01:42 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-11-15 10:01:42 (GMT)
commit671f61ec87f5e8d762ea890aabbc62c777e1c4f9 (patch)
tree1517f5fc5d00c8fd04872b35571556b021866f14 /plugins/pychrysalide/format/module.c
parent3e21278480a25552401644cd0dc168e3588508dd (diff)
Restore a skeleton of support for file formats.
Diffstat (limited to 'plugins/pychrysalide/format/module.c')
-rw-r--r--plugins/pychrysalide/format/module.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/pychrysalide/format/module.c b/plugins/pychrysalide/format/module.c
index 62c15ed..95d4172 100644
--- a/plugins/pychrysalide/format/module.c
+++ b/plugins/pychrysalide/format/module.c
@@ -30,12 +30,12 @@
#include "executable.h"
#include "flat.h"
-#include "format.h"
#include "known.h"
-#include "preload.h"
-#include "strsym.h"
-#include "symbol.h"
-#include "symiter.h"
+//#include "preload.h"
+#include "program.h"
+//#include "strsym.h"
+//#include "symbol.h"
+//#include "symiter.h"
#include "../helpers.h"
@@ -105,11 +105,11 @@ bool populate_format_module(void)
if (result) result = ensure_python_executable_format_is_registered();
if (result) result = ensure_python_flat_format_is_registered();
if (result) result = ensure_python_known_format_is_registered();
- if (result) result = ensure_python_binary_format_is_registered();
- if (result) result = ensure_python_preload_info_is_registered();
- if (result) result = ensure_python_string_symbol_is_registered();
- if (result) result = ensure_python_binary_symbol_is_registered();
- if (result) result = ensure_python_sym_iterator_is_registered();
+ //if (result) result = ensure_python_preload_info_is_registered();
+ if (result) result = ensure_python_program_format_is_registered();
+ //if (result) result = ensure_python_string_symbol_is_registered();
+ //if (result) result = ensure_python_binary_symbol_is_registered();
+ //if (result) result = ensure_python_sym_iterator_is_registered();
assert(result);