summaryrefslogtreecommitdiff
path: root/tools/girnode.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2008-08-07 22:15:22 +0000
committerJohan Dahlin <johan@src.gnome.org>2008-08-07 22:15:22 +0000
commitf9fd9816e02f05542aba93d7de00b2c982c63f50 (patch)
treebbadf87dc7440c65f32e86a1a7a471bf508916c3 /tools/girnode.h
parentb2d590a941da696ae2389a5dac49bc51feeed947 (diff)
downloadgobject-introspection-gir-compiler.tar.gz
Add string/any/sequence to the parser/typelibgir-compiler
svn path=/branches/gir-compiler/; revision=324
Diffstat (limited to 'tools/girnode.h')
-rw-r--r--tools/girnode.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/tools/girnode.h b/tools/girnode.h
index 351ab641..66144d38 100644
--- a/tools/girnode.h
+++ b/tools/girnode.h
@@ -45,26 +45,26 @@ typedef struct _GIrNodeUnion GIrNodeUnion;
typedef enum
{
- G_IR_NODE_INVALID,
- G_IR_NODE_FUNCTION,
- G_IR_NODE_CALLBACK,
- G_IR_NODE_STRUCT,
- G_IR_NODE_BOXED,
- G_IR_NODE_ENUM,
- G_IR_NODE_FLAGS,
- G_IR_NODE_OBJECT,
- G_IR_NODE_INTERFACE,
- G_IR_NODE_CONSTANT,
- G_IR_NODE_ERROR_DOMAIN,
- G_IR_NODE_UNION,
- G_IR_NODE_PARAM,
- G_IR_NODE_TYPE,
- G_IR_NODE_PROPERTY,
- G_IR_NODE_SIGNAL,
- G_IR_NODE_VALUE,
- G_IR_NODE_VFUNC,
- G_IR_NODE_FIELD,
- G_IR_NODE_XREF
+ G_IR_NODE_INVALID = 0,
+ G_IR_NODE_FUNCTION = 1,
+ G_IR_NODE_CALLBACK = 2,
+ G_IR_NODE_STRUCT = 3,
+ G_IR_NODE_BOXED = 4,
+ G_IR_NODE_ENUM = 5,
+ G_IR_NODE_FLAGS = 6,
+ G_IR_NODE_OBJECT = 7,
+ G_IR_NODE_INTERFACE = 8,
+ G_IR_NODE_CONSTANT = 9,
+ G_IR_NODE_ERROR_DOMAIN = 10,
+ G_IR_NODE_UNION = 11,
+ G_IR_NODE_PARAM = 12,
+ G_IR_NODE_TYPE = 13,
+ G_IR_NODE_PROPERTY = 14,
+ G_IR_NODE_SIGNAL = 15,
+ G_IR_NODE_VALUE = 16,
+ G_IR_NODE_VFUNC = 17,
+ G_IR_NODE_FIELD = 18,
+ G_IR_NODE_XREF = 19
} GIrNodeTypeId;
struct _GIrNode