diff options
author | Johan Dahlin <jdahlin@litl.com> | 2009-02-25 14:38:39 -0300 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2009-02-25 14:38:39 -0300 |
commit | c58582c7a88a95616fa87b81517ab8a2a76af92f (patch) | |
tree | a45e6f19ce8d6fd3ba57510984a94756e0d0ce78 /tests/scanner/foo.h | |
parent | a51b8305c70fedd6d989229c3d7ed46b200718e8 (diff) | |
parent | acf7c084c5e13de262d866b896e9b30a0739eecf (diff) | |
download | gobject-introspection-c58582c7a88a95616fa87b81517ab8a2a76af92f.tar.gz |
Merge commit 'origin'
Diffstat (limited to 'tests/scanner/foo.h')
-rw-r--r-- | tests/scanner/foo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/scanner/foo.h b/tests/scanner/foo.h index 060b5d55..d3dd29f9 100644 --- a/tests/scanner/foo.h +++ b/tests/scanner/foo.h @@ -4,6 +4,10 @@ #include <glib-object.h> #include "utility.h" +#define FOO_SUCCESS_INT 0x1138 + +#define FOO_DEFINE_SHOULD_BE_EXPOSED "should be exposed" + #define FOO_TYPE_INTERFACE (foo_interface_get_type ()) #define FOO_INTERFACE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), FOO_TYPE_INTERFACE, FooInterface)) #define FOO_IS_INTERFACE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), FOO_TYPE_INTERFACE)) @@ -320,5 +324,6 @@ GQuark foo_error_quark (void); /* Should be skipped */ void foo_some_variant (guint x, va_list args); +void foo_some_variant_ptr (guint x, va_list *args); #endif /* __FOO_OBJECT_H__ */ |