diff options
Diffstat (limited to 'xine_fbfe_frontend.c')
-rw-r--r-- | xine_fbfe_frontend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xine_fbfe_frontend.c b/xine_fbfe_frontend.c index cc92a3aa..9259be83 100644 --- a/xine_fbfe_frontend.c +++ b/xine_fbfe_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_fbfe_frontend.c,v 1.25 2008-06-17 15:15:44 phintuka Exp $ + * $Id: xine_fbfe_frontend.c,v 1.26 2008-06-17 16:12:23 phintuka Exp $ * */ @@ -64,7 +64,8 @@ typedef struct fbfe_t { /* function pointers */ frontend_t fe; - void (*update_display_size)(frontend_t*); + void (*update_display_size)(struct fbfe_t*); + void (*toggle_fullscreen_state)(struct fbfe_t*); /* vdr */ fe_keypress_f keypress; @@ -119,9 +120,8 @@ typedef struct fbfe_t { /* Common (non-X11/FB) frontend functions */ #include "xine_frontend.c" -static void fbfe_update_display_size(frontend_t *this_gen) +static void fbfe_update_display_size(fe_t *this) { - fe_t *this = (fe_t*)this_gen; if(this->fullscreen) { this->width = this->video_port->get_property(this->video_port, VO_PROP_WINDOW_WIDTH); |