~ubuntu-branches/ubuntu/precise/xserver-xorg-input-vmmouse/precise-proposed

« back to all changes in this revision

Viewing changes to src/vmmouse_proto.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-05-22 15:03:55 UTC
  • mfrom: (1.2.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090522150355-r5ozt1torzvjin0d
Tags: 1:12.6.4-1ubuntu1
* Merge from debian unstable.
* New changes:
  - debian/control:
    + Add mdetect (<< 0.5.2.1ubuntu5) to Replaces: for seamless upgrade.
      This change may be removed after we drop Hardy support.
* Fixes bugs:
  - VMWare fusion host + vmmouse driver generates drag events on
    any click (LP: #366521)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 1999-2006 by VMware, Inc.
3
 
 *
4
 
 * Permission is hereby granted, free of charge, to any person obtaining a
5
 
 * copy of this software and associated documentation files (the "Software"),
6
 
 * to deal in the Software without restriction, including without limitation
7
 
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8
 
 * and/or sell copies of the Software, and to permit persons to whom the
9
 
 * Software is furnished to do so, subject to the following conditions:
10
 
 *
11
 
 * The above copyright notice and this permission notice shall be included in
12
 
 * all copies or substantial portions of the Software.
13
 
 *
14
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17
 
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18
 
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19
 
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20
 
 * OTHER DEALINGS IN THE SOFTWARE.
21
 
 *
22
 
 * Except as contained in this notice, the name of the copyright holder(s)
23
 
 * and author(s) shall not be used in advertising or otherwise to promote
24
 
 * the sale, use or other dealings in this Software without prior written
25
 
 * authorization from the copyright holder(s) and author(s).
26
 
 */
27
 
 
28
 
/*
29
 
 * vmmouse_proto.h --
30
 
 *
31
 
 *      The communication protocol between the guest and the vmmouse
32
 
 *      virtual device.
33
 
 */
34
 
 
35
 
 
36
 
#ifndef _VMMOUSE_PROTO_H_
37
 
#define _VMMOUSE_PROTO_H_
38
 
 
39
 
 
40
 
#ifdef HAVE_CONFIG_H
41
 
#include "config.h"
42
 
#endif
43
 
 
44
 
#include <stdint.h>
45
 
 
46
 
#ifdef HAVE_XORG_SERVER_1_1_0
47
 
#include <unistd.h>
48
 
#else
49
 
#include "xf86_libc.h"
50
 
#endif
51
 
 
52
 
#if !defined __i386__ && !defined __x86_64__
53
 
#error The vmmouse protocol is only supported on x86 architectures.
54
 
#endif
55
 
 
56
 
#define VMMOUSE_PROTO_MAGIC 0x564D5868
57
 
#define VMMOUSE_PROTO_PORT 0x5658
58
 
 
59
 
#define VMMOUSE_PROTO_CMD_GETVERSION            10
60
 
#define VMMOUSE_PROTO_CMD_ABSPOINTER_DATA       39
61
 
#define VMMOUSE_PROTO_CMD_ABSPOINTER_STATUS     40
62
 
#define VMMOUSE_PROTO_CMD_ABSPOINTER_COMMAND    41
63
 
 
64
 
#define DECLARE_REG32_STRUCT(_r) \
65
 
   union { \
66
 
      struct { \
67
 
         uint16_t low; \
68
 
         uint16_t high; \
69
 
      } vE##_r##_; \
70
 
      uint32_t vE##_r; \
71
 
   }
72
 
 
73
 
#ifdef __x86_64__
74
 
 
75
 
#define DECLARE_REG64_STRUCT(_r) \
76
 
   union { \
77
 
      DECLARE_REG32_STRUCT(_r); \
78
 
      struct { \
79
 
         uint32_t low; \
80
 
         uint32_t high; \
81
 
      } vR##_r##_; \
82
 
      uint64_t vR##_r; \
83
 
   }
84
 
 
85
 
#define DECLARE_REG_STRUCT(x) DECLARE_REG64_STRUCT(x)
86
 
 
87
 
#else
88
 
 
89
 
#define DECLARE_REG_STRUCT(x) DECLARE_REG32_STRUCT(x)
90
 
 
91
 
#endif
92
 
 
93
 
typedef union {
94
 
   struct {
95
 
      union {
96
 
         uint32_t magic;
97
 
         DECLARE_REG_STRUCT(ax);
98
 
      };
99
 
      union {
100
 
         size_t size;
101
 
         DECLARE_REG_STRUCT(bx);
102
 
      };
103
 
      union {
104
 
         uint16_t command;
105
 
         DECLARE_REG_STRUCT(cx);
106
 
      };
107
 
      union {
108
 
         uint16_t port;
109
 
         DECLARE_REG_STRUCT(dx);
110
 
      };
111
 
      DECLARE_REG_STRUCT(si);
112
 
      DECLARE_REG_STRUCT(di);
113
 
   } in;
114
 
   struct {
115
 
      DECLARE_REG_STRUCT(ax);
116
 
      DECLARE_REG_STRUCT(bx);
117
 
      DECLARE_REG_STRUCT(cx);
118
 
      DECLARE_REG_STRUCT(dx);
119
 
      DECLARE_REG_STRUCT(si);
120
 
      DECLARE_REG_STRUCT(di);
121
 
   } out;
122
 
} VMMouseProtoCmd;
123
 
 
124
 
 
125
 
void
126
 
VMMouseProto_SendCmd(VMMouseProtoCmd *cmd); // IN/OUT
127
 
 
128
 
 
129
 
#undef DECLARE_REG_STRUCT
130
 
 
131
 
#endif /* _VMMOUSE_PROTO_H_ */