mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 13:40:50 +00:00
11 lines
144 B
C
11 lines
144 B
C
/*
|
|
* Thread-safe X11 locking stubs
|
|
*/
|
|
|
|
static void nop(void)
|
|
{
|
|
}
|
|
|
|
void (*wine_tsx11_lock)(void) = nop;
|
|
void (*wine_tsx11_unlock)(void) = nop;
|