mirror of
https://github.com/mpv-player/mpv
synced 2025-01-04 05:52:09 +00:00
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:
parent
b231e1cc32
commit
da28fa2ab2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user