Change the message trace indentation to be consistent by thread.
[wine] / tsx11 / ts_shape.c
1 /*
2  * Thread safe wrappers around shape 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_LIBXSHAPE
10 #include <X11/IntrinsicP.h>
11
12 #include <X11/extensions/shape.h>
13
14 #include "ts_shape.h"
15
16
17 void  TSXShapeCombineRectangles(Display* a0, Window a1, int a2, int a3, int a4, XRectangle* a5, int a6, int a7, int a8)
18 {
19   wine_tsx11_lock();
20   XShapeCombineRectangles(a0, a1, a2, a3, a4, a5, a6, a7, a8);
21   wine_tsx11_unlock();
22 }
23
24 void  TSXShapeCombineMask(Display* a0, Window a1, int a2, int a3, int a4, Pixmap a5, int a6)
25 {
26   wine_tsx11_lock();
27   XShapeCombineMask(a0, a1, a2, a3, a4, a5, a6);
28   wine_tsx11_unlock();
29 }
30
31 #endif /* defined(HAVE_LIBXSHAPE) */
32