~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/include/globals.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/include/globals.h,v 1.4 2000/06/28 18:21:22 tsi Exp $ */
2
 
 
3
 
#ifndef _XSERV_GLOBAL_H_
4
 
#define _XSERV_GLOBAL_H_
5
 
 
6
 
#include "window.h"     /* for WindowPtr */
7
 
 
8
 
/* Global X server variables that are visible to mi, dix, os, and ddx */
9
 
 
10
 
extern CARD32 defaultScreenSaverTime;
11
 
extern CARD32 defaultScreenSaverInterval;
12
 
extern CARD32 ScreenSaverTime;
13
 
extern CARD32 ScreenSaverInterval;
14
 
 
15
 
extern char *defaultFontPath;
16
 
extern char *rgbPath;
17
 
extern int monitorResolution;
18
 
extern Bool loadableFonts;
19
 
extern int defaultColorVisualClass;
20
 
 
21
 
extern Bool Must_have_memory;
22
 
extern WindowPtr *WindowTable;
23
 
extern int GrabInProgress;
24
 
extern Bool noTestExtensions;
25
 
 
26
 
extern DDXPointRec dixScreenOrigins[MAXSCREENS];
27
 
 
28
 
#ifdef DPMSExtension
29
 
extern CARD32 defaultDPMSStandbyTime;
30
 
extern CARD32 defaultDPMSSuspendTime;
31
 
extern CARD32 defaultDPMSOffTime;
32
 
extern CARD32 DPMSStandbyTime;
33
 
extern CARD32 DPMSSuspendTime;
34
 
extern CARD32 DPMSOffTime;
35
 
extern CARD16 DPMSPowerLevel;
36
 
extern Bool defaultDPMSEnabled;
37
 
extern Bool DPMSEnabled;
38
 
extern Bool DPMSEnabledSwitch;
39
 
extern Bool DPMSDisabledSwitch;
40
 
extern Bool DPMSCapableFlag;
41
 
#endif
42
 
 
43
 
#ifdef PANORAMIX
44
 
extern Bool noPanoramiXExtension;
45
 
extern Bool PanoramiXMapped;
46
 
extern Bool PanoramiXVisibilityNotifySent;
47
 
extern Bool PanoramiXWindowExposureSent;
48
 
extern Bool PanoramiXOneExposeRequest;
49
 
#endif
50
 
 
51
 
 
52
 
#endif /* _XSERV_GLOBAL_H_ */