summaryrefslogtreecommitdiffstats
path: root/runtime/rsconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/rsconf.h')
-rw-r--r--runtime/rsconf.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/rsconf.h b/runtime/rsconf.h
index 4a8c143f..e32e3d12 100644
--- a/runtime/rsconf.h
+++ b/runtime/rsconf.h
@@ -34,12 +34,18 @@ struct templates_s {
struct template *lastStatic; /* last static element of the template list */
};
+
+struct actions_s {
+ unsigned nbrActions; /* number of actions */
+};
+
/* --- end configuration objects --- */
/* the rsconf object */
struct rsconf_s {
BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */
templates_t templates;
+ actions_t actions;
};