forked from AuroraMiddleware/gtk
50b1a5a9dc
Mon Jul 3 17:08:14 2000 Owen Taylor <otaylor@redhat.com> * gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Use g_get_charset() instead of g_get_codeset(). * gtk/gtkframe.[ch] gtkframe.h gtk/gtktextmark.h: Comment out some strdup'ing functions to keep timj happy until we finish fighting this out.
26 lines
539 B
C
26 lines
539 B
C
#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);
|
|
/* Temporarily commented out until memory management behavior is figured out */
|
|
/* char * gtk_text_mark_get_name (GtkTextMark *mark); */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|
|
|
|
|