]> git.draconx.ca Git - gob-dx.git/blobdiff - src/tree.h
Release 0.92.1
[gob-dx.git] / src / tree.h
index 474579e6b96f3c5daba9245f22d289011382a5a0..814ce027825f720287460c3d7a7d0091b5f7ade8 100644 (file)
@@ -91,6 +91,7 @@ typedef struct _Argument Argument;
 struct _Argument {
        int type;
        char *gtktype;
+       Type *atype;
        GList *flags;
        char *name;
        char *get;
@@ -162,7 +163,7 @@ Node *new_type(int stars, char *name, char *postfix);
 Node *new_check(int chtype, char *number);
 Node *new_funcarg(Type *atype, char *name, GList *checks);
 Node *new_method(int scope, int method, Type *mtype, char *otype, GList *gtktypes, char *id, GList *args, char *onerror, char *cbuf,int line_no,int ccode_line, int vararg);
-Node *new_argument(char *gtktype, GList *flags, char *name, char *get, int get_line, char *set, int set_line, int line_no);
+Node *new_argument(char *gtktype, Type *atype, GList *flags, char *name, char *get, int get_line, char *set, int set_line, int line_no);
 Node *new_variable(int scope, Type *vtype, char *id,int line_no);
 
 #endif