summaryrefslogtreecommitdiffstats
path: root/gui/interface.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-25 21:27:22 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-25 21:27:22 +0000
commitadc345131f947569f9b6e490119ad9969c09529e (patch)
tree8ce153cdb01fc7d6d1fc6b141659bdad2066835f /gui/interface.h
parent150de6566ffc1ce102665da0e4bb4bb7c1e0afd6 (diff)
downloadmpv-adc345131f947569f9b6e490119ad9969c09529e.tar.bz2
mpv-adc345131f947569f9b6e490119ad9969c09529e.tar.xz
Fix silly type of guiGetEvent argument to use void * instead of char * and
get rid of some of the insane amount of casts necessary to hide the utter idiocy of the type used before. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30731 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui/interface.h')
-rw-r--r--gui/interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/interface.h b/gui/interface.h
index 59d0cbac47..075fa29422 100644
--- a/gui/interface.h
+++ b/gui/interface.h
@@ -163,7 +163,7 @@ extern int use_gui;
void guiInit( void );
void guiDone( void );
-int guiGetEvent( int type,char * arg );
+int guiGetEvent( int type,void * arg );
void guiEventHandling( void );
void guiLoadFont( void );
void guiLoadSubtitle( char * name );