mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
21 lines
399 B
C
21 lines
399 B
C
/* gnomefe misc defs. */
|
|
|
|
#ifndef _gnome_fe_h
|
|
#define _gnome_fe_h
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
/* Client data for Imagelib callbacks */
|
|
typedef struct fe_PixmapClientData {
|
|
GdkPixmap *gdk_pixmap;
|
|
} fe_PixmapClientData;
|
|
|
|
typedef struct fe_ContextData {
|
|
void *frame_or_view;
|
|
} fe_ContextData;
|
|
|
|
/* This is in main.c and defines the visual */
|
|
extern GdkVisual *gnomefe_visual;
|
|
|
|
#endif /* _gnome_fe_h */
|