~ubuntu-branches/ubuntu/karmic/virtualbox-ose/karmic-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/4.2/programs/Xserver/hw/xfree86/ddc/xf86DDC.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-09-14 18:25:07 UTC
  • mfrom: (0.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090914182507-c98g07mq16hjmn6d
Tags: 3.0.6-dfsg-1ubuntu1
* Merge from debian unstable (LP: #429697), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
  - virtualbox, virtualbox-* (names of the upstream proprietary packages)
    conflict with virtualbox-ose (LP: #379878)
* Make debug package depend on normal or guest utils package
* Drop patches/22-pulseaudio-stubs.dpatch (applied upstream)
* Rename Ubuntu specific patches to uXX-*.dpatch
* Fix lintian warnings in maintainer scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $XFree86: xc/programs/Xserver/hw/xfree86/ddc/xf86DDC.h,v 1.10 2000/06/07 22:03:09 tsi Exp $ */
2
 
 
3
 
/* xf86DDC.h
4
 
 *
5
 
 * This file contains all information to interpret a standard EDIC block 
6
 
 * transmitted by a display device via DDC (Display Data Channel). So far 
7
 
 * there is no information to deal with optional EDID blocks.  
8
 
 * DDC is a Trademark of VESA (Video Electronics Standard Association).
9
 
 *
10
 
 * Copyright 1998 by Egbert Eich <Egbert.Eich@Physik.TU-Darmstadt.DE>
11
 
 */
12
 
 
13
 
 
14
 
#ifndef XF86_DDC_H
15
 
# define XF86_DDC_H
16
 
 
17
 
#include "edid.h"
18
 
#include "xf86i2c.h"
19
 
#include "xf86str.h"
20
 
 
21
 
/* speed up / slow down */
22
 
typedef enum {
23
 
  DDC_SLOW,
24
 
  DDC_FAST
25
 
} xf86ddcSpeed;
26
 
 
27
 
extern xf86MonPtr xf86DoEDID_DDC1(
28
 
    int scrnIndex, 
29
 
    void (*DDC1SetSpeed)(ScrnInfoPtr, xf86ddcSpeed),
30
 
    unsigned int (*DDC1Read)(ScrnInfoPtr)
31
 
);
32
 
 
33
 
extern xf86MonPtr xf86DoEDID_DDC2(
34
 
   int scrnIndex,
35
 
   I2CBusPtr pBus
36
 
);
37
 
 
38
 
extern xf86MonPtr xf86PrintEDID(
39
 
    xf86MonPtr monPtr
40
 
);
41
 
 
42
 
extern xf86MonPtr xf86InterpretEDID(
43
 
    int screenIndex, Uchar *block
44
 
);
45
 
 
46
 
extern xf86vdifPtr xf86InterpretVdif(
47
 
    CARD8 *c
48
 
);
49
 
 
50
 
extern Bool xf86SetDDCproperties(
51
 
     ScrnInfoPtr pScreen,
52
 
     xf86MonPtr DDC
53
 
);
54
 
 
55
 
#endif
56
 
 
57