Don't keep main exe and dlls handles open when the file is on
[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 #ifdef HAVE_LIBXXPM
10
11 #include <X11/xpm.h>
12
13 #include "ts_xpm.h"
14
15
16 int TSXpmCreatePixmapFromData(Display *a0, Drawable a1, char **a2, Pixmap *a3, Pixmap *a4, XpmAttributes *a5)
17 {
18   int r;
19   wine_tsx11_lock();
20   r = XpmCreatePixmapFromData(a0, a1, a2, a3, a4, a5);
21   wine_tsx11_unlock();
22   return r;
23 }
24
25 int TSXpmAttributesSize(void)
26 {
27   int r;
28   wine_tsx11_lock();
29   r = XpmAttributesSize();
30   wine_tsx11_unlock();
31   return r;
32 }
33
34 #endif /* defined(HAVE_LIBXXPM) */
35