summaryrefslogtreecommitdiff
path: root/vchat.h
diff options
context:
space:
mode:
Diffstat (limited to 'vchat.h')
-rwxr-xr-xvchat.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/vchat.h b/vchat.h
index 64788b9..ec5da02 100755
--- a/vchat.h
+++ b/vchat.h
@@ -59,7 +59,10 @@ struct configoption
59 unsigned char *varname; 59 unsigned char *varname;
60 unsigned char *defaultvalue; 60 unsigned char *defaultvalue;
61 unsigned char *value; 61 unsigned char *value;
62 unsigned char **localvar; 62 union {
63 unsigned char **pstr;
64 int *pint;
65 } localvar;
63}; 66};
64 67
65typedef struct configoption configoption; 68typedef struct configoption configoption;