1 | /* $XFree86: xc/programs/Xserver/Xi/chgfctl.h,v 3.1 1996/04/15 11:18:26 dawes Exp $ */
|
---|
2 | /************************************************************
|
---|
3 |
|
---|
4 | Copyright 1996 by Thomas E. Dickey <[email protected]>
|
---|
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 CHGFCTL_H
|
---|
32 | #define CHGFCTL_H 1
|
---|
33 |
|
---|
34 | int
|
---|
35 | SProcXChangeFeedbackControl(
|
---|
36 | ClientPtr /* client */
|
---|
37 | );
|
---|
38 |
|
---|
39 | int
|
---|
40 | ProcXChangeFeedbackControl(
|
---|
41 | ClientPtr /* client */
|
---|
42 | );
|
---|
43 |
|
---|
44 | int
|
---|
45 | ChangeKbdFeedback (
|
---|
46 | ClientPtr /* client */,
|
---|
47 | DeviceIntPtr /* dev */,
|
---|
48 | unsigned long /* mask */,
|
---|
49 | KbdFeedbackPtr /* k */,
|
---|
50 | xKbdFeedbackCtl * /* f */
|
---|
51 | );
|
---|
52 |
|
---|
53 | int
|
---|
54 | ChangePtrFeedback (
|
---|
55 | ClientPtr /* client */,
|
---|
56 | DeviceIntPtr /* dev */,
|
---|
57 | unsigned long /* mask */,
|
---|
58 | PtrFeedbackPtr /* p */,
|
---|
59 | xPtrFeedbackCtl * /* f */
|
---|
60 | );
|
---|
61 |
|
---|
62 | int
|
---|
63 | ChangeIntegerFeedback (
|
---|
64 | ClientPtr /* client */,
|
---|
65 | DeviceIntPtr /* dev */,
|
---|
66 | unsigned long /* mask */,
|
---|
67 | IntegerFeedbackPtr /* i */,
|
---|
68 | xIntegerFeedbackCtl * /* f */
|
---|
69 | );
|
---|
70 |
|
---|
71 | int
|
---|
72 | ChangeStringFeedback (
|
---|
73 | ClientPtr /* client */,
|
---|
74 | DeviceIntPtr /* dev */,
|
---|
75 | unsigned long /* mask */,
|
---|
76 | StringFeedbackPtr /* s */,
|
---|
77 | xStringFeedbackCtl * /* f */
|
---|
78 | );
|
---|
79 |
|
---|
80 | int
|
---|
81 | ChangeBellFeedback (
|
---|
82 | ClientPtr /* client */,
|
---|
83 | DeviceIntPtr /* dev */,
|
---|
84 | unsigned long /* mask */,
|
---|
85 | BellFeedbackPtr /* b */,
|
---|
86 | xBellFeedbackCtl * /* f */
|
---|
87 | );
|
---|
88 |
|
---|
89 | int
|
---|
90 | ChangeLedFeedback (
|
---|
91 | ClientPtr /* client */,
|
---|
92 | DeviceIntPtr /* dev */,
|
---|
93 | unsigned long /* mask */,
|
---|
94 | LedFeedbackPtr /* l */,
|
---|
95 | xLedFeedbackCtl * /* f */
|
---|
96 | );
|
---|
97 |
|
---|
98 | #endif /* CHGFCTL_H */
|
---|