aboutsummaryrefslogtreecommitdiffhomepage
path: root/gui/interface.h
diff options
context:
space:
mode:
authorGravatar Uoti Urpala <uau@glyph.nonexistent.invalid>2008-12-04 01:55:52 +0200
committerGravatar Uoti Urpala <uau@glyph.nonexistent.invalid>2008-12-04 01:55:52 +0200
commit8c144171bb80dd3d1f7161b97675e78cad00bc65 (patch)
tree7ad930ebc554ab68af1911f4dfd217cc18b86cce /gui/interface.h
parent52ee93c1c64dfaa0afc881c38154b04c100cb617 (diff)
parent8c5889004f7ba9f6fcbca20a05a9301771348408 (diff)
Merge svn changes up to r28087
Conflicts: command.c libao2/ao_ivtv.c libao2/ao_v4l2.c libmpcodecs/dec_video.h libvo/aspect.h libvo/sub.c libvo/sub.h libvo/vo_directx.c libvo/vo_macosx.m libvo/vo_quartz.c mp_core.h mplayer.c mplayer.h osdep/getch2.h osdep/timer.h
Diffstat (limited to 'gui/interface.h')
-rw-r--r--gui/interface.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gui/interface.h b/gui/interface.h
index a739d2c640..63398867fc 100644
--- a/gui/interface.h
+++ b/gui/interface.h
@@ -162,13 +162,13 @@ extern guiInterface_t guiIntfStruct;
extern int use_gui;
-extern void guiInit( void );
-extern void guiDone( void );
-extern int guiGetEvent( int type,char * arg );
-extern void guiEventHandling( void );
-extern void guiLoadFont( void );
-extern void guiLoadSubtitle( char * name );
-extern void guiMessageBox(int level, char * str);
+void guiInit( void );
+void guiDone( void );
+int guiGetEvent( int type,char * arg );
+void guiEventHandling( void );
+void guiLoadFont( void );
+void guiLoadSubtitle( char * name );
+void guiMessageBox(int level, char * str);
typedef struct plItem
{
@@ -223,13 +223,13 @@ extern char * fsHistory[fsPersistant_MaxPos];
extern float gtkEquChannels[6][10];
-extern void * gtkSet( int cmd,float param, void * vparam );
+void * gtkSet( int cmd, float param, void * vparam );
-extern char * gstrdup( const char * str );
-extern int gstrcmp( const char * a,const char * b );
-extern void gfree( void ** p );
-extern void gaddlist( char *** list,const char * entry );
-extern char * gstrchr( char * str,int c );
+char * gstrdup( const char * str );
+int gstrcmp( const char * a, const char * b );
+void gfree( void ** p );
+void gaddlist( char *** list, const char * entry );
+char * gstrchr( char * str, int c );
#define guiSetFilename( s,n ) { gfree( (void **)&s ); s=gstrdup( n ); }