[MPlayer-cvslog] r25813 - trunk/libvo/w32_common.c
reimar
subversion at mplayerhq.hu
Sun Jan 20 10:40:15 CET 2008
Author: reimar
Date: Sun Jan 20 10:40:15 2008
New Revision: 25813
Log:
Fix some function types from unspecified to empty argument list
Modified:
trunk/libvo/w32_common.c
Modified: trunk/libvo/w32_common.c
==============================================================================
--- trunk/libvo/w32_common.c (original)
+++ trunk/libvo/w32_common.c Sun Jan 20 10:40:15 2008
@@ -192,7 +192,7 @@ void w32_update_xinerama_info(void) {
aspect_save_screenres(vo_screenwidth, vo_screenheight);
}
-static void updateScreenProperties() {
+static void updateScreenProperties(void) {
DEVMODE dm;
dm.dmSize = sizeof dm;
dm.dmDriverExtra = 0;
@@ -391,7 +391,7 @@ void vo_w32_fullscreen(void) {
createRenderingContext();
}
-void vo_w32_border() {
+void vo_w32_border(void) {
vo_border = !vo_border;
createRenderingContext();
}
@@ -404,7 +404,7 @@ void vo_w32_ontop( void )
}
}
-void vo_w32_uninit() {
+void vo_w32_uninit(void) {
mp_msg(MSGT_VO, MSGL_V, "vo: win32: uninit\n");
resetMode();
ShowCursor(1);
More information about the MPlayer-cvslog
mailing list