Implemented MJPG handler.
[wine/multimedia.git] / tsx11 / ts_shape.c
blobf64f5306df020bbdfa58edc434d7b4e0fc8e20d3
1 /*
2 * Thread safe wrappers around shape calls.
3 * This file was generated automatically by tools/make_X11wrappers
4 * DO NOT EDIT!
5 */
7 #include "config.h"
9 #ifdef HAVE_LIBXSHAPE
10 #include <X11/IntrinsicP.h>
12 #include <X11/extensions/shape.h>
14 #include "ts_shape.h"
17 void TSXShapeCombineRectangles(Display* a0, Window a1, int a2, int a3, int a4, XRectangle* a5, int a6, int a7, int a8)
19 wine_tsx11_lock();
20 XShapeCombineRectangles(a0, a1, a2, a3, a4, a5, a6, a7, a8);
21 wine_tsx11_unlock();
24 void TSXShapeCombineMask(Display* a0, Window a1, int a2, int a3, int a4, Pixmap a5, int a6)
26 wine_tsx11_lock();
27 XShapeCombineMask(a0, a1, a2, a3, a4, a5, a6);
28 wine_tsx11_unlock();
31 #endif /* defined(HAVE_LIBXSHAPE) */