diff options
Diffstat (limited to 'src/emacsgtkfixed.h')
| -rw-r--r-- | src/emacsgtkfixed.h | 20 |
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 | ||
| 28 | G_BEGIN_DECLS | 28 | G_BEGIN_DECLS |
| 29 | 29 | ||
| 30 | struct frame; | ||
| 31 | |||
| 32 | //typedef struct _EmacsFixed EmacsFixed; | ||
| 33 | typedef struct _EmacsFixedPrivate EmacsFixedPrivate; | ||
| 34 | typedef struct _EmacsFixedClass EmacsFixedClass; | ||
| 35 | |||
| 36 | struct _EmacsFixed | ||
| 37 | { | ||
| 38 | GtkFixed container; | ||
| 39 | |||
| 40 | /*< private >*/ | ||
| 41 | EmacsFixedPrivate *priv; | ||
| 42 | }; | ||
| 43 | |||
| 44 | |||
| 45 | struct _EmacsFixedClass | ||
| 46 | { | ||
| 47 | GtkFixedClass parent_class; | ||
| 48 | }; | ||
| 49 | |||
| 30 | extern GtkWidget *emacs_fixed_new (struct frame *f); | 50 | extern GtkWidget *emacs_fixed_new (struct frame *f); |
| 31 | 51 | ||
| 32 | G_END_DECLS | 52 | G_END_DECLS |