1 | /** @file
|
---|
2 | * Virtual Device for Guest <-> VMM/Host communication, Mixed Up Mess. (ADD,DEV)
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_VMMDev2_h
|
---|
27 | #define ___VBox_VMMDev2_h
|
---|
28 |
|
---|
29 | #include <iprt/assert.h>
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * Seamless mode.
|
---|
33 | *
|
---|
34 | * Used by VbglR3SeamlessWaitEvent
|
---|
35 | *
|
---|
36 | * @ingroup grp_vmmdev_req
|
---|
37 | *
|
---|
38 | * @todo DARN! DARN! DARN! Who forgot to do the 32-bit hack here???
|
---|
39 | * FIXME! XXX!
|
---|
40 | *
|
---|
41 | * We will now have to carefully check how our compilers have treated this
|
---|
42 | * flag. If any are compressing it into a byte type, we'll have to check
|
---|
43 | * how the request memory is initialized. If we are 104% sure it's ok to
|
---|
44 | * expand it, we'll expand it. If not, we must redefine the field to a
|
---|
45 | * uint8_t and a 3 byte padding.
|
---|
46 | */
|
---|
47 | typedef enum
|
---|
48 | {
|
---|
49 | VMMDev_Seamless_Disabled = 0, /**< normal mode; entire guest desktop displayed. */
|
---|
50 | VMMDev_Seamless_Visible_Region = 1, /**< visible region mode; only top-level guest windows displayed. */
|
---|
51 | VMMDev_Seamless_Host_Window = 2 /**< windowed mode; each top-level guest window is represented in a host window. */
|
---|
52 | } VMMDevSeamlessMode;
|
---|
53 |
|
---|
54 | /**
|
---|
55 | * CPU event types.
|
---|
56 | *
|
---|
57 | * Used by VbglR3CpuHotplugWaitForEvent
|
---|
58 | *
|
---|
59 | * @ingroup grp_vmmdev_req
|
---|
60 | */
|
---|
61 | typedef enum
|
---|
62 | {
|
---|
63 | VMMDevCpuEventType_Invalid = 0,
|
---|
64 | VMMDevCpuEventType_None = 1,
|
---|
65 | VMMDevCpuEventType_Plug = 2,
|
---|
66 | VMMDevCpuEventType_Unplug = 3,
|
---|
67 | VMMDevCpuEventType_SizeHack = 0x7fffffff
|
---|
68 | } VMMDevCpuEventType;
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * HGCM service location types.
|
---|
72 | * @ingroup grp_vmmdev_req
|
---|
73 | */
|
---|
74 | typedef enum
|
---|
75 | {
|
---|
76 | VMMDevHGCMLoc_Invalid = 0,
|
---|
77 | VMMDevHGCMLoc_LocalHost = 1,
|
---|
78 | VMMDevHGCMLoc_LocalHost_Existing = 2,
|
---|
79 | VMMDevHGCMLoc_SizeHack = 0x7fffffff
|
---|
80 | } HGCMServiceLocationType;
|
---|
81 | AssertCompileSize(HGCMServiceLocationType, 4);
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * HGCM host service location.
|
---|
85 | * @ingroup grp_vmmdev_req
|
---|
86 | */
|
---|
87 | typedef struct
|
---|
88 | {
|
---|
89 | char achName[128]; /**< This is really szName. */
|
---|
90 | } HGCMServiceLocationHost;
|
---|
91 | AssertCompileSize(HGCMServiceLocationHost, 128);
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * HGCM service location.
|
---|
95 | * @ingroup grp_vmmdev_req
|
---|
96 | */
|
---|
97 | typedef struct HGCMSERVICELOCATION
|
---|
98 | {
|
---|
99 | /** Type of the location. */
|
---|
100 | HGCMServiceLocationType type;
|
---|
101 |
|
---|
102 | union
|
---|
103 | {
|
---|
104 | HGCMServiceLocationHost host;
|
---|
105 | } u;
|
---|
106 | } HGCMServiceLocation;
|
---|
107 | AssertCompileSize(HGCMServiceLocation, 128+4);
|
---|
108 |
|
---|
109 | /* forward declarations: */
|
---|
110 | struct VMMDevReqMousePointer;
|
---|
111 | struct VMMDevMemory;
|
---|
112 |
|
---|
113 | #endif
|
---|
114 |
|
---|