Release 980201
[wine.git] / tsx11 / tsx11defs.c
blob371385233dfa78ab62062dda41fffc7dc8879878
1 /*
2 * Thread safe wrappers around XShm calls.
4 * Copyright 1998 Kristian Nielsen
5 */
7 #include "tsx11defs.h"
8 #include "stddebug.h"
9 #include "debug.h"
11 CRITICAL_SECTION *TSX11_SectionPtr = NULL;
12 static CRITICAL_SECTION TSX11_Section;
14 int TSX11_Init(void)
16 InitializeCriticalSection( &TSX11_Section );
17 dprintf_x11(stddeb, "TSX11_Init: X11 critical section is %p\n",
18 &TSX11_Section);
19 TSX11_SectionPtr = &TSX11_Section;
20 return TRUE;