diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-03-20 18:17:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-05-05 15:38:47 -0400 |
commit | 20c8c8b91cf2719249a729492ec84b7282dc03fb (patch) | |
tree | d53cf50689bceedbea093895d0e51a7c204cef76 /gtk/gtktextattributes.h | |
parent | 8470eb84c080718120b5daf130db744bf6ec220b (diff) | |
download | gtk+-20c8c8b91cf2719249a729492ec84b7282dc03fb.tar.gz |
Add annotations to gtk headers
Add annotations to all exported functions in GTK+ headers.
Diffstat (limited to 'gtk/gtktextattributes.h')
-rw-r--r-- | gtk/gtktextattributes.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtktextattributes.h b/gtk/gtktextattributes.h index 76d6fe5452..d712dbe20b 100644 --- a/gtk/gtktextattributes.h +++ b/gtk/gtktextattributes.h @@ -166,13 +166,19 @@ struct _GtkTextAttributes guint padding[3]; }; +GDK_AVAILABLE_IN_ALL GtkTextAttributes* gtk_text_attributes_new (void); +GDK_AVAILABLE_IN_ALL GtkTextAttributes* gtk_text_attributes_copy (GtkTextAttributes *src); +GDK_AVAILABLE_IN_ALL void gtk_text_attributes_copy_values (GtkTextAttributes *src, GtkTextAttributes *dest); +GDK_AVAILABLE_IN_ALL void gtk_text_attributes_unref (GtkTextAttributes *values); +GDK_AVAILABLE_IN_ALL GtkTextAttributes *gtk_text_attributes_ref (GtkTextAttributes *values); +GDK_AVAILABLE_IN_ALL GType gtk_text_attributes_get_type (void) G_GNUC_CONST; |