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

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/xorg-server-1.5.3/midbestr.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
 
/******************************************************************************
2
 
 * 
3
 
 * Copyright (c) 1994, 1995  Hewlett-Packard Company
4
 
 *
5
 
 * Permission is hereby granted, free of charge, to any person obtaining
6
 
 * a copy of this software and associated documentation files (the
7
 
 * "Software"), to deal in the Software without restriction, including
8
 
 * without limitation the rights to use, copy, modify, merge, publish,
9
 
 * distribute, sublicense, and/or sell copies of the Software, and to
10
 
 * permit persons to whom the Software is furnished to do so, subject to
11
 
 * the following conditions:
12
 
 * 
13
 
 * The above copyright notice and this permission notice shall be included
14
 
 * in all copies or substantial portions of the Software.
15
 
 * 
16
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17
 
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
 
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
 
 * IN NO EVENT SHALL HEWLETT-PACKARD COMPANY BE LIABLE FOR ANY CLAIM,
20
 
 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21
 
 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
22
 
 * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
 
 * 
24
 
 * Except as contained in this notice, the name of the Hewlett-Packard
25
 
 * Company shall not be used in advertising or otherwise to promote the
26
 
 * sale, use or other dealings in this Software without prior written
27
 
 * authorization from the Hewlett-Packard Company.
28
 
 * 
29
 
 *     Header file for users of machine-independent DBE code
30
 
 * 
31
 
 *****************************************************************************/
32
 
 
33
 
 
34
 
#ifdef HAVE_DIX_CONFIG_H
35
 
#include <dix-config.h>
36
 
#endif
37
 
 
38
 
#ifndef MIDBE_STRUCT_H
39
 
#define MIDBE_STRUCT_H
40
 
 
41
 
 
42
 
/* DEFINES */
43
 
 
44
 
#define MI_DBE_WINDOW_PRIV_PRIV(pDbeWindowPriv) \
45
 
    (!(pDbeWindowPriv) ? NULL : (MiDbeWindowPrivPrivPtr) \
46
 
     dixLookupPrivate(&(pDbeWindowPriv)->devPrivates, miDbeWindowPrivPrivKey))
47
 
 
48
 
#define MI_DBE_WINDOW_PRIV_PRIV_FROM_WINDOW(pWin)\
49
 
    MI_DBE_WINDOW_PRIV_PRIV(DBE_WINDOW_PRIV(pWin))
50
 
 
51
 
#define MI_DBE_SCREEN_PRIV_PRIV(pDbeScreenPriv) \
52
 
    (!(pDbeScreenPriv) ? NULL : (MiDbeScreenPrivPrivPtr) \
53
 
     dixLookupPrivate(&(pDbeScreenPriv)->devPrivates, miDbeScreenPrivPrivKey))
54
 
 
55
 
 
56
 
/* TYPEDEFS */
57
 
 
58
 
typedef struct _MiDbeWindowPrivPrivRec
59
 
{
60
 
    /* Place machine-specific fields in here.
61
 
     * Since this is mi code, we do not really have machine-specific fields.
62
 
     */
63
 
 
64
 
    /* Pointer to a drawable that contains the contents of the back buffer.
65
 
     */
66
 
    PixmapPtr           pBackBuffer;
67
 
 
68
 
    /* Pointer to a drawable that contains the contents of the front buffer.
69
 
     * This pointer is only used for the XdbeUntouched swap action.  For that
70
 
     * swap action, we need to copy the front buffer (window) contents into
71
 
     * this drawable, copy the contents of current back buffer drawable (the
72
 
     * back buffer) into the window, swap the front and back drawable pointers,
73
 
     * and then swap the drawable/resource associations in the resource
74
 
     * database.
75
 
     */
76
 
    PixmapPtr           pFrontBuffer;
77
 
 
78
 
    /* Pointer back to our window private with which we are associated. */
79
 
    DbeWindowPrivPtr    pDbeWindowPriv;
80
 
 
81
 
} MiDbeWindowPrivPrivRec, *MiDbeWindowPrivPrivPtr;
82
 
 
83
 
typedef struct _MiDbeScreenPrivPrivRec
84
 
{
85
 
    /* Place machine-specific fields in here.
86
 
     * Since this is mi code, we do not really have machine-specific fields.
87
 
     */
88
 
 
89
 
    /* Pointer back to our screen private with which we are associated. */
90
 
    DbeScreenPrivPtr    pDbeScreenPriv;
91
 
 
92
 
} MiDbeScreenPrivPrivRec, *MiDbeScreenPrivPrivPtr;
93
 
 
94
 
#endif /* MIDBE_STRUCT_H */
95