summaryrefslogtreecommitdiff
path: root/src/map/script.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/script.h')
-rw-r--r--src/map/script.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/map/script.h b/src/map/script.h
index b50c466..3391643 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -24,6 +24,14 @@ struct script_state {
};
unsigned char * parse_script(unsigned char *,int);
+typedef struct {
+ char *name;
+ union {
+ int i;
+ char * s;
+ } v;
+} argrec_t;
+int run_script_l(unsigned char *,int,int,int,int,argrec_t *args);
int run_script(unsigned char *,int,int,int);
struct dbt* script_get_label_db();