mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 18:53:17 +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;
|