Add return statements to avoid gcc warnings.

This commit is contained in:
Gerald Pfeifer 2008-08-11 00:44:31 +02:00 committed by Alexandre Julliard
parent 6603ad725a
commit e375b0c4a2
4 changed files with 6 additions and 0 deletions

View file

@ -258,6 +258,7 @@ static DWORD CALLBACK iocp_poller(LPVOID Arg)
callback( err, transferred, overlapped );
}
}
return 0;
}
/***********************************************************************

View file

@ -295,6 +295,7 @@ static void CALLBACK set_timer_rate( ULONG_PTR arg )
static DWORD CALLBACK VGA_TimerThread( void *dummy )
{
for (;;) SleepEx( INFINITE, TRUE );
return 0;
}
static void VGA_DeinstallTimer(void)

View file

@ -407,6 +407,8 @@ static DWORD CALLBACK timer_thread( void *arg )
*system_time = GetTickCount();
Sleep( 55 );
}
return 0;
}

View file

@ -1923,6 +1923,8 @@ static DWORD CALLBACK wodPlayer(LPVOID pmt)
dwNextFeedTime = dwNextNotifyTime = INFINITE;
}
}
return 0;
}
/**************************************************************************