1 | /** @file
|
---|
2 | * VBoxGuest - VirtualBox Guest Additions Interface, 16-bit (OS/2) header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_VBoxGuest16_h
|
---|
31 | #define ___VBox_VBoxGuest16_h
|
---|
32 |
|
---|
33 | #define RT_BIT(bit) (1UL << (bit))
|
---|
34 |
|
---|
35 |
|
---|
36 | #define VMMDEV_VERSION 0x00010004UL
|
---|
37 |
|
---|
38 | #define VBOXGUEST_DEVICE_NAME "vboxgst$"
|
---|
39 |
|
---|
40 | /* aka VBOXGUESTOS2IDCCONNECT */
|
---|
41 | typedef struct VBGOS2IDC
|
---|
42 | {
|
---|
43 | unsigned long u32Version;
|
---|
44 | unsigned long u32Session;
|
---|
45 | unsigned long pfnServiceEP;
|
---|
46 | short (__cdecl __far *fpfnServiceEP)(unsigned long u32Session, unsigned short iFunction,
|
---|
47 | void __far *fpvData, unsigned short cbData, unsigned short __far *pcbDataReturned);
|
---|
48 | unsigned long fpfnServiceAsmEP;
|
---|
49 | } VBGOS2IDC;
|
---|
50 | typedef VBGOS2IDC *PVBGOS2IDC;
|
---|
51 |
|
---|
52 | #define VBOXGUEST_IOCTL_WAITEVENT 2
|
---|
53 | #define VBOXGUEST_IOCTL_VMMREQUEST 3
|
---|
54 | #define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT 48
|
---|
55 |
|
---|
56 |
|
---|
57 | #define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED RT_BIT(0)
|
---|
58 | #define VMMDEV_EVENT_HGCM RT_BIT(1)
|
---|
59 | #define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST RT_BIT(2)
|
---|
60 | #define VMMDEV_EVENT_JUDGE_CREDENTIALS RT_BIT(3)
|
---|
61 | #define VMMDEV_EVENT_RESTORED RT_BIT(4)
|
---|
62 |
|
---|
63 |
|
---|
64 | #define VBOXGUEST_WAITEVENT_OK 0
|
---|
65 | #define VBOXGUEST_WAITEVENT_TIMEOUT 1
|
---|
66 | #define VBOXGUEST_WAITEVENT_INTERRUPTED 2
|
---|
67 | #define VBOXGUEST_WAITEVENT_ERROR 3
|
---|
68 |
|
---|
69 | typedef struct _VBoxGuestWaitEventInfo
|
---|
70 | {
|
---|
71 | unsigned long u32TimeoutIn;
|
---|
72 | unsigned long u32EventMaskIn;
|
---|
73 | unsigned long u32Result;
|
---|
74 | unsigned long u32EventFlagsOut;
|
---|
75 | } VBoxGuestWaitEventInfo;
|
---|
76 |
|
---|
77 |
|
---|
78 | #define VMMDEV_REQUEST_HEADER_VERSION (0x10001UL)
|
---|
79 | typedef struct
|
---|
80 | {
|
---|
81 | unsigned long size;
|
---|
82 | unsigned long version;
|
---|
83 | unsigned long requestType;
|
---|
84 | signed long rc;
|
---|
85 | unsigned long reserved1;
|
---|
86 | unsigned long reserved2;
|
---|
87 | } VMMDevRequestHeader;
|
---|
88 |
|
---|
89 | #define VMMDevReq_GetMouseStatus 1
|
---|
90 | #define VMMDevReq_SetMouseStatus 2
|
---|
91 | #define VMMDevReq_CtlGuestFilterMask 42
|
---|
92 |
|
---|
93 | #define VBOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE RT_BIT(0)
|
---|
94 | #define VBOXGUEST_MOUSE_HOST_CAN_ABSOLUTE RT_BIT(1)
|
---|
95 | #define VBOXGUEST_MOUSE_GUEST_NEEDS_HOST_CURSOR RT_BIT(2)
|
---|
96 | #define VBOXGUEST_MOUSE_HOST_CANNOT_HWPOINTER RT_BIT(3)
|
---|
97 |
|
---|
98 | typedef struct
|
---|
99 | {
|
---|
100 | VMMDevRequestHeader header;
|
---|
101 | unsigned long mouseFeatures;
|
---|
102 | unsigned long pointerXPos;
|
---|
103 | unsigned long pointerYPos;
|
---|
104 | } VMMDevReqMouseStatus;
|
---|
105 |
|
---|
106 | typedef struct
|
---|
107 | {
|
---|
108 | VMMDevRequestHeader header;
|
---|
109 | unsigned long u32OrMask;
|
---|
110 | unsigned long u32NotMask;
|
---|
111 | } VMMDevCtlGuestFilterMask;
|
---|
112 |
|
---|
113 | #endif
|
---|
114 |
|
---|