blob: ca5e33422b7e102b19849388f64aa229ded967f0 [file] [log] [blame]
Alexandre Julliard60ce85c1998-02-01 18:33:27 +00001/*
2 * Thread safe wrappers around xpm calls.
3 * This file was generated automatically by tools/make_X11wrappers
Alexandre Julliard03468f71998-02-15 19:40:49 +00004 * DO NOT EDIT!
Alexandre Julliard60ce85c1998-02-01 18:33:27 +00005 */
6
7#include <X11/xpm.h>
Alexandre Julliard03468f71998-02-15 19:40:49 +00008#include "x11drv.h"
Alexandre Julliard60ce85c1998-02-01 18:33:27 +00009#include "debug.h"
10
11int TSXpmCreatePixmapFromData(Display *a0, Drawable a1, char **a2, Pixmap *a3, Pixmap *a4, XpmAttributes *a5)
12{
13 int r;
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000014 TRACE(x11, "Call XpmCreatePixmapFromData\n");
Alexandre Julliard03468f71998-02-15 19:40:49 +000015 EnterCriticalSection( &X11DRV_CritSection );
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000016 r = XpmCreatePixmapFromData(a0, a1, a2, a3, a4, a5);
Alexandre Julliard03468f71998-02-15 19:40:49 +000017 LeaveCriticalSection( &X11DRV_CritSection );
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000018 TRACE(x11, "Ret XpmCreatePixmapFromData\n");
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000019 return r;
20}
21
22int TSXpmAttributesSize(void)
23{
24 int r;
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000025 TRACE(x11, "Call XpmAttributesSize\n");
Alexandre Julliard03468f71998-02-15 19:40:49 +000026 EnterCriticalSection( &X11DRV_CritSection );
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000027 r = XpmAttributesSize();
Alexandre Julliard03468f71998-02-15 19:40:49 +000028 LeaveCriticalSection( &X11DRV_CritSection );
Alexandre Julliarda69b88b1998-03-15 20:29:56 +000029 TRACE(x11, "Ret XpmAttributesSize\n");
Alexandre Julliard60ce85c1998-02-01 18:33:27 +000030 return r;
31}
Alexandre Julliard829fe321998-07-26 14:27:39 +000032