Use DllOverrides from wine.ini as defaults also in
[wine] / tsx11 / ts_xpm.c
1 /*
2  * Thread safe wrappers around xpm calls.
3  * This file was generated automatically by tools/make_X11wrappers
4  * DO NOT EDIT!
5  */
6
7 #include "config.h"
8
9 #ifndef X_DISPLAY_MISSING
10
11 #ifdef HAVE_LIBXXPM
12
13 #include <X11/xpm.h>
14 #include "debug.h"
15 #include "x11drv.h"
16
17 DEFAULT_DEBUG_CHANNEL(x11)
18
19 int TSXpmCreatePixmapFromData(Display *a0, Drawable a1, char **a2, Pixmap *a3, Pixmap *a4, XpmAttributes *a5)
20 {
21   int r;
22   TRACE(x11, "Call XpmCreatePixmapFromData\n");
23   EnterCriticalSection( &X11DRV_CritSection );
24   r = XpmCreatePixmapFromData(a0, a1, a2, a3, a4, a5);
25   LeaveCriticalSection( &X11DRV_CritSection );
26   TRACE(x11, "Ret XpmCreatePixmapFromData\n");
27   return r;
28 }
29
30 int TSXpmAttributesSize(void)
31 {
32   int r;
33   TRACE(x11, "Call XpmAttributesSize\n");
34   EnterCriticalSection( &X11DRV_CritSection );
35   r = XpmAttributesSize();
36   LeaveCriticalSection( &X11DRV_CritSection );
37   TRACE(x11, "Ret XpmAttributesSize\n");
38   return r;
39 }
40
41 #endif /* defined(HAVE_LIBXXPM) */
42
43 #endif /* !defined(X_DISPLAY_MISSING) */