~sbeattie/ubuntu/lucid/vnc4/lp556147

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/XF86Setup/tclvidmode.h

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XConsortium: tclvidmode.h /main/2 1996/10/19 19:06:34 kaleb $ */
 
2
 
 
3
 
 
4
 
 
5
 
 
6
 
 
7
/* $XFree86: xc/programs/Xserver/hw/xfree86/XF86Setup/tclvidmode.h,v 3.5 1997/07/10 08:17:20 hohndel Exp $ */
 
8
 
 
9
#include <X11/Intrinsic.h>
 
10
#include <X11/Xmd.h>
 
11
#include <X11/extensions/xf86vmode.h>
 
12
#include <tcl.h>
 
13
#include <tk.h>
 
14
 
 
15
int TCL_XF86VidModeQueryVersion(
 
16
#if NeedNestedPrototypes
 
17
    ClientData  clientData,
 
18
    Tcl_Interp  *interp,
 
19
    int         argc,
 
20
    char        **argv
 
21
#endif
 
22
);
 
23
 
 
24
int TCL_XF86VidModeQueryExtension(
 
25
#if NeedNestedPrototypes
 
26
    ClientData  clientData,
 
27
    Tcl_Interp  *interp,
 
28
    int         argc,
 
29
    char        **argv
 
30
#endif
 
31
);
 
32
 
 
33
int TCL_XF86VidModeAddModeLine(
 
34
#if NeedNestedPrototypes
 
35
    ClientData  clientData,
 
36
    Tcl_Interp  *interp,
 
37
    int         argc,
 
38
    char        **argv
 
39
#endif
 
40
);
 
41
 
 
42
int TCL_XF86VidModeModModeLine(
 
43
#if NeedNestedPrototypes
 
44
    ClientData  clientData,
 
45
    Tcl_Interp  *interp,
 
46
    int         argc,
 
47
    char        **argv
 
48
#endif
 
49
);
 
50
 
 
51
int TCL_XF86VidModeValidateModeLine(
 
52
#if NeedNestedPrototypes
 
53
    ClientData  clientData,
 
54
    Tcl_Interp  *interp,
 
55
    int         argc,
 
56
    char        **argv
 
57
#endif
 
58
);
 
59
 
 
60
int TCL_XF86VidModeDeleteModeLine(
 
61
#if NeedNestedPrototypes
 
62
    ClientData  clientData,
 
63
    Tcl_Interp  *interp,
 
64
    int         argc,
 
65
    char        **argv
 
66
#endif
 
67
);
 
68
 
 
69
int TCL_XF86VidModeGetModeLine(
 
70
#if NeedNestedPrototypes
 
71
    ClientData  clientData,
 
72
    Tcl_Interp  *interp,
 
73
    int         argc,
 
74
    char        **argv
 
75
#endif
 
76
);
 
77
 
 
78
int TCL_XF86VidModeGetAllModeLines(
 
79
#if NeedNestedPrototypes
 
80
    ClientData  clientData,
 
81
    Tcl_Interp  *interp,
 
82
    int         argc,
 
83
    char        **argv
 
84
#endif
 
85
);
 
86
 
 
87
int TCL_XF86VidModeGetMonitor(
 
88
#if NeedNestedPrototypes
 
89
    ClientData  clientData,
 
90
    Tcl_Interp  *interp,
 
91
    int         argc,
 
92
    char        **argv
 
93
#endif
 
94
);
 
95
 
 
96
int TCL_XF86VidModeLockModeSwitch(
 
97
#if NeedNestedPrototypes
 
98
    ClientData  clientData,
 
99
    Tcl_Interp  *interp,
 
100
    int         argc,
 
101
    char        **argv
 
102
#endif
 
103
);
 
104
 
 
105
int TCL_XF86VidModeSwitchMode(
 
106
#if NeedNestedPrototypes
 
107
    ClientData  clientData,
 
108
    Tcl_Interp  *interp,
 
109
    int         argc,
 
110
    char        **argv
 
111
#endif
 
112
);
 
113
 
 
114
int TCL_XF86VidModeSwitchToMode(
 
115
#if NeedNestedPrototypes
 
116
    ClientData  clientData,
 
117
    Tcl_Interp  *interp,
 
118
    int         argc,
 
119
    char        **argv
 
120
#endif
 
121
);
 
122
 
 
123
int TCL_XF86VidModeGetDotClocks(
 
124
#if NeedNestedPrototypes
 
125
    ClientData  clientData,
 
126
    Tcl_Interp  *interp,
 
127
    int         argc,
 
128
    char        **argv
 
129
#endif
 
130
);
 
131