aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacsgtkfixed.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emacsgtkfixed.h')
-rw-r--r--src/emacsgtkfixed.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/emacsgtkfixed.h b/src/emacsgtkfixed.h
index 73280b83e57..378bd2b828c 100644
--- a/src/emacsgtkfixed.h
+++ b/src/emacsgtkfixed.h
@@ -27,6 +27,26 @@ struct frame;
27 27
28G_BEGIN_DECLS 28G_BEGIN_DECLS
29 29
30struct frame;
31
32//typedef struct _EmacsFixed EmacsFixed;
33typedef struct _EmacsFixedPrivate EmacsFixedPrivate;
34typedef struct _EmacsFixedClass EmacsFixedClass;
35
36struct _EmacsFixed
37{
38 GtkFixed container;
39
40 /*< private >*/
41 EmacsFixedPrivate *priv;
42};
43
44
45struct _EmacsFixedClass
46{
47 GtkFixedClass parent_class;
48};
49
30extern GtkWidget *emacs_fixed_new (struct frame *f); 50extern GtkWidget *emacs_fixed_new (struct frame *f);
31 51
32G_END_DECLS 52G_END_DECLS