diff options
author | Johan Dahlin <johan@gnome.org> | 2008-04-21 18:09:31 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-04-21 18:09:31 +0000 |
commit | e3da044b297b411208414e5e6d51454c764f1717 (patch) | |
tree | 72590cb381ec1d0ce795f5a99c799b800d8aba56 | |
parent | 0cfa30073533ee8f9763a0aed7e7e7de2d4dfdc4 (diff) | |
download | gobject-introspection-e3da044b297b411208414e5e6d51454c764f1717.tar.gz |
Add a couple of constants.
2008-04-21 Johan Dahlin <johan@gnome.org>
* tests/parser/foo-object.h: Add a couple of constants.
svn path=/trunk/; revision=194
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | tests/parser/foo-object.h | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2008-04-21 Johan Dahlin <johan@gnome.org> + * tests/parser/foo-object.h: Add a couple of constants. + * giscanner/gidlwriter.py: * giscanner/gobjecttreebuilder.py: * giscanner/treebuilder.py: diff --git a/tests/parser/foo-object.h b/tests/parser/foo-object.h index 59f9fe20..941f113e 100644 --- a/tests/parser/foo-object.h +++ b/tests/parser/foo-object.h @@ -103,6 +103,10 @@ GType foo_boxed_get_type (void) G_GNUC_CONST; FooBoxed* foo_boxed_new (void); void foo_boxed_method (FooBoxed* boxed); +char *FOO_CONSTANT_STR = "foo-constant-str"; +int FOO_CONSTANT_INT = 10; +float FOO_CONSTANT_FLOAT = 10; + /* Invalid comments, should be ignored */ /* @ */ |