diff options
-rw-r--r-- | Gui/bitmap.h | 5 | ||||
-rw-r--r-- | Gui/mplayer/gtk/fs.c | 2 | ||||
-rw-r--r-- | Gui/mplayer/play.c | 1 |
3 files changed, 5 insertions, 3 deletions
diff --git a/Gui/bitmap.h b/Gui/bitmap.h index 84f671037c..ce8bbaed3c 100644 --- a/Gui/bitmap.h +++ b/Gui/bitmap.h @@ -1,11 +1,10 @@ - #ifndef __MYSAMPLE #define __MYSAMPLE typedef struct _txSample { - unsigned int Width; - unsigned int Height; + unsigned long Width; + unsigned long Height; unsigned int BPP; unsigned long ImageSize; char * Image; diff --git a/Gui/mplayer/gtk/fs.c b/Gui/mplayer/gtk/fs.c index 427445c0a6..e59a6fa6f5 100644 --- a/Gui/mplayer/gtk/fs.c +++ b/Gui/mplayer/gtk/fs.c @@ -221,6 +221,8 @@ void CheckDir( GtkWidget * list,char * directory ) gtk_widget_show( list ); } +int fs_PersistantHistory( char *subject ); /* forward declaration */ + void ShowFileSelect( int type,int modal ) { int i; diff --git a/Gui/mplayer/play.c b/Gui/mplayer/play.c index 6c11d9204a..79d85e2333 100644 --- a/Gui/mplayer/play.c +++ b/Gui/mplayer/play.c @@ -8,6 +8,7 @@ #include <signal.h> #include "../wm/ws.h" +#include "../wm/wsxdnd.h" #include "../../config.h" #include "../../help_mp.h" #include "../../mplayer.h" |