~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/drivers/ati/r128_dripriv.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/ati/r128_dripriv.h,v 1.3 2000/11/18 19:37:11 tsi Exp $ */
 
2
/*
 
3
 * Copyright 1999, 2000 ATI Technologies Inc., Markham, Ontario,
 
4
 *                      Precision Insight, Inc., Cedar Park, Texas, and
 
5
 *                      VA Linux Systems Inc., Fremont, California.
 
6
 *
 
7
 * All Rights Reserved.
 
8
 *
 
9
 * Permission is hereby granted, free of charge, to any person obtaining
 
10
 * a copy of this software and associated documentation files (the
 
11
 * "Software"), to deal in the Software without restriction, including
 
12
 * without limitation on the rights to use, copy, modify, merge,
 
13
 * publish, distribute, sublicense, and/or sell copies of the Software,
 
14
 * and to permit persons to whom the Software is furnished to do so,
 
15
 * subject to the following conditions:
 
16
 *
 
17
 * The above copyright notice and this permission notice (including the
 
18
 * next paragraph) shall be included in all copies or substantial
 
19
 * portions of the Software.
 
20
 *
 
21
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
22
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
23
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
24
 * NON-INFRINGEMENT.  IN NO EVENT SHALL ATI, PRECISION INSIGHT, VA LINUX
 
25
 * SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 
26
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 
27
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
28
 * OTHER DEALINGS IN THE SOFTWARE.
 
29
 */
 
30
 
 
31
/*
 
32
 * Authors:
 
33
 *   Rickard E. Faith <faith@valinux.com>
 
34
 *   Kevin E. Martin <martin@valinux.com>
 
35
 *
 
36
 */
 
37
 
 
38
#ifndef _R128_DRIPRIV_H_
 
39
#define _R128_DRIPRIV_H_
 
40
 
 
41
#include "GL/glxint.h"
 
42
 
 
43
#define R128_MAX_DRAWABLES 256
 
44
 
 
45
extern void GlxSetVisualConfigs(int nconfigs, __GLXvisualConfig *configs,
 
46
                                void **configprivs);
 
47
 
 
48
typedef struct {
 
49
    /* Nothing here yet */
 
50
    int dummy;
 
51
} R128ConfigPrivRec, *R128ConfigPrivPtr;
 
52
 
 
53
typedef struct {
 
54
    /* Nothing here yet */
 
55
    int dummy;
 
56
} R128DRIContextRec, *R128DRIContextPtr;
 
57
 
 
58
#endif