Moved window move/resize syscommand handling to the graphics driver.
[wine/multimedia.git] / tsx11 / ts_xpm.c
blob1cd0899110d46a4e4a0afe751f6c6b510b5e3f86
1 /*
2 * Thread safe wrappers around xpm calls.
3 * This file was generated automatically by tools/make_X11wrappers
4 * DO NOT EDIT!
5 */
7 #include "config.h"
9 #ifdef HAVE_LIBXXPM
11 #include <X11/xpm.h>
13 #include "ts_xpm.h"
16 int TSXpmCreatePixmapFromData(Display *a0, Drawable a1, char **a2, Pixmap *a3, Pixmap *a4, XpmAttributes *a5)
18 int r;
19 wine_tsx11_lock();
20 r = XpmCreatePixmapFromData(a0, a1, a2, a3, a4, a5);
21 wine_tsx11_unlock();
22 return r;
25 int TSXpmAttributesSize(void)
27 int r;
28 wine_tsx11_lock();
29 r = XpmAttributesSize();
30 wine_tsx11_unlock();
31 return r;
34 #endif /* defined(HAVE_LIBXXPM) */