summaryrefslogtreecommitdiff
path: root/plugins/shellexec/shellexec.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/shellexec/shellexec.h')
-rw-r--r--plugins/shellexec/shellexec.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/shellexec/shellexec.h b/plugins/shellexec/shellexec.h
index b76dfd85..1d10ac7d 100644
--- a/plugins/shellexec/shellexec.h
+++ b/plugins/shellexec/shellexec.h
@@ -40,8 +40,11 @@ typedef struct Shx_action_s
typedef struct Shx_plugin_s
{
DB_misc_t misc;
- void
- (*save_actions)(Shx_action_t *action_list);
+
+ void (*save_actions) (void);
+ Shx_action_t* (*action_add) (void);
+ void (*action_remove) (Shx_action_t *a);
+ void (*action_free) (Shx_action_t *a);
} Shx_plugin_t;
#endif