Fix some function types from unspecified to empty argument list

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25813 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-01-20 09:40:15 +00:00
parent b231e1cc32
commit da28fa2ab2
1 changed files with 3 additions and 3 deletions

View File

@ -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);