diff options
Diffstat (limited to 'gtk/gtktextmark.h')
-rw-r--r-- | gtk/gtktextmark.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gtk/gtktextmark.h b/gtk/gtktextmark.h new file mode 100644 index 000000000..0fa2f0dd5 --- /dev/null +++ b/gtk/gtktextmark.h @@ -0,0 +1,24 @@ +#ifndef GTK_TEXT_MARK_H +#define GTK_TEXT_MARK_H + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* The GtkTextMark data type */ + +typedef struct _GtkTextMark GtkTextMark; + +void gtk_text_mark_set_visible (GtkTextMark *mark, + gboolean setting); + +gboolean gtk_text_mark_is_visible (GtkTextMark *mark); +char * gtk_text_mark_get_name (GtkTextMark *mark); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif + + |