diff options
author | Kjell Ahlstedt <kjell.ahlstedt@bredband.net> | 2015-12-22 09:39:28 +0100 |
---|---|---|
committer | Kjell Ahlstedt <kjell.ahlstedt@bredband.net> | 2015-12-22 10:33:41 +0100 |
commit | 939be8a24b45862731b2ca3192cc82300aed9efd (patch) | |
tree | a0d2dfecd39648a1e9f73d18a524e86fbdd8b069 /gdk/gdkseat.h | |
parent | 7a054328430cd7ee7fa63b11e7e7d8bb4754776c (diff) | |
download | gtk+-939be8a24b45862731b2ca3192cc82300aed9efd.tar.gz |
GdkSeat: Add G_BEGIN_DECLS and G_END_DECLS
https://bugzilla.gnome.org/show_bug.cgi?id=759771
Diffstat (limited to 'gdk/gdkseat.h')
-rw-r--r-- | gdk/gdkseat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdk/gdkseat.h b/gdk/gdkseat.h index e91e620d54..b4ce279b76 100644 --- a/gdk/gdkseat.h +++ b/gdk/gdkseat.h @@ -29,6 +29,8 @@ #include <gdk/gdkevents.h> #include <gdk/gdktypes.h> +G_BEGIN_DECLS + #define GDK_TYPE_SEAT (gdk_seat_get_type ()) #define GDK_SEAT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GDK_TYPE_SEAT, GdkSeat)) #define GDK_IS_SEAT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GDK_TYPE_SEAT)) @@ -110,4 +112,6 @@ GdkDevice * gdk_seat_get_pointer (GdkSeat *seat); GDK_AVAILABLE_IN_3_20 GdkDevice * gdk_seat_get_keyboard (GdkSeat *seat); +G_END_DECLS + #endif /* __GDK_SEAT_H__ */ |