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

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/1.5/X11/Xprotostr.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
 
/* $Xorg: Xprotostr.h,v 1.4 2001/02/09 02:03:23 xorgcvs Exp $ */
2
 
#ifndef XPROTOSTRUCTS_H
3
 
#define XPROTOSTRUCTS_H
4
 
 
5
 
/***********************************************************
6
 
 
7
 
Copyright 1987, 1998  The Open Group
8
 
 
9
 
Permission to use, copy, modify, distribute, and sell this software and its
10
 
documentation for any purpose is hereby granted without fee, provided that
11
 
the above copyright notice appear in all copies and that both that
12
 
copyright notice and this permission notice appear in supporting
13
 
documentation.
14
 
 
15
 
The above copyright notice and this permission notice shall be included in
16
 
all copies or substantial portions of the Software.
17
 
 
18
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
21
 
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22
 
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23
 
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
 
 
25
 
Except as contained in this notice, the name of The Open Group shall not be
26
 
used in advertising or otherwise to promote the sale, use or other dealings
27
 
in this Software without prior written authorization from The Open Group.
28
 
 
29
 
 
30
 
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
31
 
 
32
 
                        All Rights Reserved
33
 
 
34
 
Permission to use, copy, modify, and distribute this software and its 
35
 
documentation for any purpose and without fee is hereby granted, 
36
 
provided that the above copyright notice appear in all copies and that
37
 
both that copyright notice and this permission notice appear in 
38
 
supporting documentation, and that the name of Digital not be
39
 
used in advertising or publicity pertaining to distribution of the
40
 
software without specific, written prior permission.  
41
 
 
42
 
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
43
 
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
44
 
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
45
 
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
46
 
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
47
 
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
48
 
SOFTWARE.
49
 
 
50
 
******************************************************************/
51
 
#include <X11/Xmd.h>
52
 
 
53
 
/* Used by PolySegment */
54
 
 
55
 
typedef struct _xSegment {
56
 
    INT16 x1 B16, y1 B16, x2 B16, y2 B16;
57
 
} xSegment;
58
 
 
59
 
/* POINT */
60
 
 
61
 
typedef struct _xPoint {
62
 
        INT16           x B16, y B16;
63
 
} xPoint;
64
 
 
65
 
typedef struct _xRectangle {
66
 
    INT16 x B16, y B16;
67
 
    CARD16  width B16, height B16;
68
 
} xRectangle;
69
 
 
70
 
/*  ARC  */
71
 
 
72
 
typedef struct _xArc {
73
 
    INT16 x B16, y B16;
74
 
    CARD16   width B16, height B16;
75
 
    INT16   angle1 B16, angle2 B16;
76
 
} xArc;
77
 
 
78
 
#endif /* XPROTOSTRUCTS_H */