diff options
| author | Paul Eggert | 2016-01-30 11:27:34 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-30 11:27:34 -0800 |
| commit | 82b089783e71b2aeef950eaecfe4cbc0735e64a2 (patch) | |
| tree | a826c20768071bda95a69b2632718c1641c6d0cc /src/emacsgtkfixed.h | |
| parent | d27c8078ef766dae3587bc82b70128a70efaa223 (diff) | |
| parent | f7dc6d8b5bb318e02a4016d93f8b34de0716f4dc (diff) | |
| download | emacs-82b089783e71b2aeef950eaecfe4cbc0735e64a2.tar.gz emacs-82b089783e71b2aeef950eaecfe4cbc0735e64a2.zip | |
-
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 |