summaryrefslogtreecommitdiff
path: root/src/plugins/pglist.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-02-11 17:05:54 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-02-11 17:05:54 (GMT)
commitbf879f2562545ab7de23f9d38364b7bd4b43fb2c (patch)
tree6154160307cbca304ea9e1de178d8c2dfc8e0928 /src/plugins/pglist.h
parentabd96dbbe27246e9303173e5e2f47b2e4cedbcb7 (diff)
Registered all the supported formats in the system code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@471 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/plugins/pglist.h')
-rw-r--r--src/plugins/pglist.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/plugins/pglist.h b/src/plugins/pglist.h
index fec31c2..d0176aa 100644
--- a/src/plugins/pglist.h
+++ b/src/plugins/pglist.h
@@ -49,8 +49,7 @@ const GPluginModule **get_all_plugins_for_action(PluginAction, size_t *);
* Définitions des opérations appliquables à une catégories de greffons.
*/
-#define process_all__plugins_for(a, f, ...) \
- do \
+#define process_all_plugins_for(a, f, ...) \
{ \
size_t __count; \
const GPluginModule **__list; \
@@ -61,10 +60,16 @@ const GPluginModule **get_all_plugins_for_action(PluginAction, size_t *);
} \
while (0)
+
+/* DPS_FORMAT / PGA_FORMAT_MATCHER */
+
+#define find_matching_format()
+
+
/* DPS_DISASSEMBLY */
#define process_disassembly_event(a, b) \
- process_all__plugins_for(a, g_plugin_module_process_disassembly_event, b)
+ process_all_plugins_for(a, g_plugin_module_process_disassembly_event, b)