remove unused structure definition

svn path=/trunk/netsurf/; revision=8187
This commit is contained in:
Vincent Sanders 2009-06-30 11:08:31 +00:00
parent afbc9e9b6e
commit 38356d46ff

View File

@ -24,16 +24,6 @@ typedef struct fb_cursor_s fb_cursor_t;
/* bounding box */ /* bounding box */
typedef struct nsfb_bbox_s bbox_t; typedef struct nsfb_bbox_s bbox_t;
typedef struct framebuffer_s {
int width;
int height;
uint8_t *ptr; /**< Base of video memory. */
int linelen; /**< length of a video line. */
int bpp;
colour palette[256]; /* palette for index modes */
fb_cursor_t *cursor;
} framebuffer_t;
struct gui_window { struct gui_window {
struct browser_window *bw; struct browser_window *bw;
@ -50,7 +40,6 @@ struct gui_window {
}; };
extern framebuffer_t *framebuffer;
extern struct gui_window *window_list; extern struct gui_window *window_list;
/* scroll a window */ /* scroll a window */