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