Commit af915de2 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

win32u: Make some functions static.

parent 2ce72c68
......@@ -1347,7 +1347,7 @@ static void unlock_display_devices(void)
pthread_mutex_unlock( &display_lock );
}
HDC get_display_dc(void)
static HDC get_display_dc(void)
{
pthread_mutex_lock( &display_dc_lock );
if (!display_dc)
......@@ -1365,7 +1365,7 @@ HDC get_display_dc(void)
return display_dc;
}
void release_display_dc( HDC hdc )
static void release_display_dc( HDC hdc )
{
pthread_mutex_unlock( &display_dc_lock );
}
......
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