blob: 939b34f214899337b02ba9c177e072dbe0741009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "stubs.h"
#ifdef __SUNPRO_C
#pragma weak XpClientIsBitmapClient
#pragma weak XpClientIsPrintClient
#endif
weak Bool
XpClientIsBitmapClient(ClientPtr client)
{
return True;
}
weak Bool
XpClientIsPrintClient(ClientPtr client, FontPathElementPtr fpe)
{
return False;
}
|