Commit e375b0c4 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Add return statements to avoid gcc warnings.

parent 6603ad72
......@@ -258,6 +258,7 @@ static DWORD CALLBACK iocp_poller(LPVOID Arg)
callback( err, transferred, overlapped );
}
}
return 0;
}
/***********************************************************************
......
......@@ -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)
......
......@@ -407,6 +407,8 @@ static DWORD CALLBACK timer_thread( void *arg )
*system_time = GetTickCount();
Sleep( 55 );
}
return 0;
}
......
......@@ -1923,6 +1923,8 @@ static DWORD CALLBACK wodPlayer(LPVOID pmt)
dwNextFeedTime = dwNextNotifyTime = INFINITE;
}
}
return 0;
}
/**************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment