]> git.sesse.net Git - rdpsrv/blob - Xserver/programs/Xserver/dix/xpstubs.c
Import X server from vnc-3.3.7.
[rdpsrv] / Xserver / programs / Xserver / dix / xpstubs.c
1 /*
2 Copyright (c) 1996  X Consortium
3
4 Permission is hereby granted, free of charge, to any person obtaining
5 a copy of this software and associated documentation files (the
6 "Software"), to deal in the Software without restriction, including
7 without limitation the rights to use, copy, modify, merge, publish,
8 distribute, sublicense, and sell copies of the Software, and to
9 permit persons to whom the Software is furnished to do so, subject to
10 the following conditions:
11
12 The above copyright notice and this permission notice shall be included
13 in all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 OTHER DEALINGS IN THE SOFTWARE.
22
23 Except as contained in this notice, the name of the X Consortium shall
24 not be used in advertising or otherwise to promote the sale, use or
25 other dealings in this Software without prior written authorization
26 from the X Consortium.
27 */
28
29 /* $XConsortium: xpstubs.c /main/1 1996/09/28 17:12:15 rws $ */
30
31 #include "misc.h"
32 #include "font.h"
33
34 Bool
35 XpClientIsBitmapClient(client)
36     ClientPtr client;
37 {
38     return TRUE;
39 }
40
41 Bool
42 XpClientIsPrintClient(client, fpe)
43     ClientPtr client;
44     FontPathElementPtr fpe;
45 {
46     return FALSE;
47 }