diff options
author | Andreas Rottmann <a.rottmann@gmx.at> | 2009-03-19 01:01:58 +0100 |
---|---|---|
committer | Andreas Rottmann <a.rottmann@gmx.at> | 2009-03-19 01:01:58 +0100 |
commit | 23e6fa6993c046de032598127ea48d4a7ee00935 (patch) | |
tree | 45cad6ff863aa10091f32c728f73f8b5e9ad87cf /tests/scanner/annotation.h | |
parent | 888566c41b4f0d73ec80307d0418ab1d44c7210c (diff) | |
download | gobject-introspection-23e6fa6993c046de032598127ea48d4a7ee00935.tar.gz |
Bug 556475 – support Shadows: annotation
Add support for the 'Rename To:' annotation for functions and methods.
Diffstat (limited to 'tests/scanner/annotation.h')
-rw-r--r-- | tests/scanner/annotation.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/scanner/annotation.h b/tests/scanner/annotation.h index 102b571a..e43e7ba6 100644 --- a/tests/scanner/annotation.h +++ b/tests/scanner/annotation.h @@ -105,6 +105,13 @@ void annotation_object_set_data3 (AnnotationObject *object, gsize length); GObject* annotation_object_do_not_use (AnnotationObject *object); +void annotation_object_watch (AnnotationObject *object, + AnnotationForeachFunc func, + gpointer user_data); +void annotation_object_watch_full (AnnotationObject *object, + AnnotationForeachFunc func, + gpointer user_data, + GDestroyNotify destroy); void annotation_init (int *argc, char ***argv); |