1 | /* $XFree86: xc/programs/Xserver/Xi/getfctl.h,v 3.1 1996/04/15 11:18:39 dawes Exp $ */
|
---|
2 | /************************************************************
|
---|
3 |
|
---|
4 | Copyright 1996 by Thomas E. Dickey <dickey@clark.net>
|
---|
5 |
|
---|
6 | All Rights Reserved
|
---|
7 |
|
---|
8 | Permission to use, copy, modify, and distribute this software and its
|
---|
9 | documentation for any purpose and without fee is hereby granted,
|
---|
10 | provided that the above copyright notice appear in all copies and that
|
---|
11 | both that copyright notice and this permission notice appear in
|
---|
12 | supporting documentation, and that the name of the above listed
|
---|
13 | copyright holder(s) not be used in advertising or publicity pertaining
|
---|
14 | to distribution of the software without specific, written prior
|
---|
15 | permission.
|
---|
16 |
|
---|
17 | THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
|
---|
18 | TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
---|
19 | AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
|
---|
20 | LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
---|
21 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
---|
22 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
---|
23 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
---|
24 |
|
---|
25 | ********************************************************/
|
---|
26 |
|
---|
27 | #ifdef HAVE_DIX_CONFIG_H
|
---|
28 | #include <dix-config.h>
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #ifndef GETFCTL_H
|
---|
32 | #define GETFCTL_H 1
|
---|
33 |
|
---|
34 | int
|
---|
35 | SProcXGetFeedbackControl(
|
---|
36 | ClientPtr /* client */
|
---|
37 | );
|
---|
38 |
|
---|
39 | int
|
---|
40 | ProcXGetFeedbackControl(
|
---|
41 | ClientPtr /* client */
|
---|
42 | );
|
---|
43 |
|
---|
44 | void
|
---|
45 | CopySwapKbdFeedback (
|
---|
46 | ClientPtr /* client */,
|
---|
47 | KbdFeedbackPtr /* k */,
|
---|
48 | char ** /* buf */
|
---|
49 | );
|
---|
50 |
|
---|
51 | void
|
---|
52 | CopySwapPtrFeedback (
|
---|
53 | ClientPtr /* client */,
|
---|
54 | PtrFeedbackPtr /* p */,
|
---|
55 | char ** /* buf */
|
---|
56 | );
|
---|
57 |
|
---|
58 | void
|
---|
59 | CopySwapIntegerFeedback (
|
---|
60 | ClientPtr /* client */,
|
---|
61 | IntegerFeedbackPtr /* i */,
|
---|
62 | char ** /* buf */
|
---|
63 | );
|
---|
64 |
|
---|
65 | void
|
---|
66 | CopySwapStringFeedback (
|
---|
67 | ClientPtr /* client */,
|
---|
68 | StringFeedbackPtr /* s */,
|
---|
69 | char ** /* buf */
|
---|
70 | );
|
---|
71 |
|
---|
72 | void
|
---|
73 | CopySwapLedFeedback (
|
---|
74 | ClientPtr /* client */,
|
---|
75 | LedFeedbackPtr /* l */,
|
---|
76 | char ** /* buf */
|
---|
77 | );
|
---|
78 |
|
---|
79 | void
|
---|
80 | CopySwapBellFeedback (
|
---|
81 | ClientPtr /* client */,
|
---|
82 | BellFeedbackPtr /* b */,
|
---|
83 | char ** /* buf */
|
---|
84 | );
|
---|
85 |
|
---|
86 | void
|
---|
87 | SRepXGetFeedbackControl (
|
---|
88 | ClientPtr /* client */,
|
---|
89 | int /* size */,
|
---|
90 | xGetFeedbackControlReply * /* rep */
|
---|
91 | );
|
---|
92 |
|
---|
93 | #endif /* GETFCTL_H */
|
---|