blob: 44491536744f67e3babe34c06cedfadcb7178818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* $XFree86$ */
/*
stub for XpClient* functions.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "stubs.h"
Bool
XpClientIsBitmapClient(ClientPtr client)
{
return True;
}
Bool
XpClientIsPrintClient(ClientPtr client, FontPathElementPtr fpe)
{
return False;
}
/* end of file */
|