~sbeattie/ubuntu/lucid/vnc4/lp556147

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/drivers/rendition/rendition.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
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/rendition/rendition.h,v 1.7 2001/05/16 06:48:10 keithp Exp $ */
 
2
 
 
3
#ifndef __RENDITION_H__
 
4
#define __RENDITION_H__
 
5
 
 
6
/* All drivers should typically include these */
 
7
#include "xf86.h"
 
8
#include "xf86_OSproc.h"
 
9
 
 
10
/* All drivers need this */
 
11
#include "xf86_ansic.h"
 
12
 
 
13
/* Everything using inb/outb, etc needs "compiler.h" */
 
14
#include "compiler.h"
 
15
 
 
16
/* This is used for module versioning */
 
17
#include "xf86Version.h"
 
18
 
 
19
/* Drivers for PCI hardware need this */
 
20
#include "xf86PciInfo.h"
 
21
 
 
22
/* Drivers that need to access the PCI config space directly need this */
 
23
#include "xf86Pci.h"
 
24
 
 
25
/* All drivers using the vgahw module need this  */
 
26
/* All V1000 _need_ VGA register access,         */
 
27
/* so multihead operation is out of the question */
 
28
#include "vgaHW.h"
 
29
 
 
30
/* All drivers initialising the SW cursor need this */
 
31
#include "mipointer.h"
 
32
 
 
33
/* All drivers implementing backing store need this */
 
34
#include "mibstore.h"
 
35
 
 
36
/* Drivers using the mi banking wrapper need this */
 
37
#include "mibank.h"
 
38
 
 
39
/* All drivers using the mi colormap manipulation need this */
 
40
#include "micmap.h"
 
41
 
 
42
/* Needed by Resources Access Control (RAC) */
 
43
#include "xf86RAC.h"
 
44
 
 
45
/* Several predefined resource lists */
 
46
#include "xf86Resources.h"
 
47
 
 
48
/* Needed by the Shadow Framebuffer */
 
49
#include "shadowfb.h"
 
50
 
 
51
/* Needed for replacement LoadPalette function for Gamma Correction */
 
52
#include "xf86cmap.h"
 
53
 
 
54
/* Drivers using fb need this */
 
55
 
 
56
#include "fb.h"
 
57
 
 
58
/* Drivers using the XAA interface ... */
 
59
#include "xaa.h"
 
60
#include "xaalocal.h"
 
61
#include "xf86fbman.h"
 
62
 
 
63
/* HW-cursor definitions */
 
64
#include "xf86Cursor.h"
 
65
 
 
66
/* DDC support */
 
67
#include "xf86DDC.h"
 
68
 
 
69
#include "commonregs.h"
 
70
 
 
71
/* end of __RENDITION_H__ */
 
72
#endif