]> Pileus Git - ~andy/gtk/blob - gtk/gtktextchild.h
Include files outside of the extern "C" block. Makes some C++ compiler
[~andy/gtk] / gtk / gtktextchild.h
1 #ifndef GTK_TEXT_CHILD_H
2 #define GTK_TEXT_CHILD_H
3
4 #include <gtk/gtktexttypes.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif /* __cplusplus */
9
10 typedef struct _GtkTextPixmap GtkTextPixmap;
11
12 struct _GtkTextPixmap {
13   GdkPixmap *pixmap;
14   GdkBitmap *mask;
15 };
16
17 GtkTextLineSegment *gtk_text_pixmap_segment_new(GdkPixmap *pixmap, GdkBitmap *mask);
18
19
20 #ifdef __cplusplus
21 }
22 #endif /* __cplusplus */
23
24 #endif