summaryrefslogtreecommitdiff
path: root/src/plugins/plugin-def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/plugin-def.h')
-rw-r--r--src/plugins/plugin-def.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/plugins/plugin-def.h b/src/plugins/plugin-def.h
index adbabd4..50b8df2 100644
--- a/src/plugins/plugin-def.h
+++ b/src/plugins/plugin-def.h
@@ -30,6 +30,15 @@
+/* Types de greffon */
+typedef enum _PluginType
+{
+ PGT_BINARY = (1 << 0) /* Actions sur un binaire */
+
+
+} PluginType;
+
+
/* Action(s) menée(s) par le greffon */
typedef enum _PluginAction
{
@@ -41,6 +50,9 @@ typedef enum _PluginAction
+/* Fournit une indication sur le(s) type(s) du greffon présent. */
+typedef PluginType (* get_plugin_type_fc) (void);
+
/* Fournit une indication sur le type d'opération(s) menée(s). */
typedef PluginAction (* get_plugin_action_fc) (void);