1 | /** @file
|
---|
2 | * VBoxGuest - VirtualBox Guest Additions Driver Interface, 16-bit (OS/2) header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2015 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_VBoxGuest16_h
|
---|
27 | #define ___VBox_VBoxGuest16_h
|
---|
28 |
|
---|
29 | #define RT_BIT(bit) (1UL << (bit))
|
---|
30 |
|
---|
31 |
|
---|
32 | /** @defgroup grp_vboxguest_16bit Edition for 16-bit Compilers
|
---|
33 | * @ingroup grp_vboxguest
|
---|
34 | * @{
|
---|
35 | */
|
---|
36 |
|
---|
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_CTL_FILTER_MASK 4
|
---|
55 | #define VBOXGUEST_IOCTL_SET_MOUSE_STATUS 10
|
---|
56 | #define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT 48
|
---|
57 |
|
---|
58 | #define VBOXGUEST_WAITEVENT_OK 0
|
---|
59 | #define VBOXGUEST_WAITEVENT_TIMEOUT 1
|
---|
60 | #define VBOXGUEST_WAITEVENT_INTERRUPTED 2
|
---|
61 | #define VBOXGUEST_WAITEVENT_ERROR 3
|
---|
62 |
|
---|
63 | typedef struct _VBoxGuestWaitEventInfo
|
---|
64 | {
|
---|
65 | unsigned long u32TimeoutIn;
|
---|
66 | unsigned long u32EventMaskIn;
|
---|
67 | unsigned long u32Result;
|
---|
68 | unsigned long u32EventFlagsOut;
|
---|
69 | } VBoxGuestWaitEventInfo;
|
---|
70 |
|
---|
71 |
|
---|
72 | #define VMMDEV_REQUEST_HEADER_VERSION (0x10001UL)
|
---|
73 | typedef struct
|
---|
74 | {
|
---|
75 | unsigned long size;
|
---|
76 | unsigned long version;
|
---|
77 | unsigned long requestType;
|
---|
78 | signed long rc;
|
---|
79 | unsigned long reserved1;
|
---|
80 | unsigned long reserved2;
|
---|
81 | } VMMDevRequestHeader;
|
---|
82 |
|
---|
83 | #define VMMDevReq_GetMouseStatus 1
|
---|
84 | #define VMMDevReq_SetMouseStatus 2
|
---|
85 | #define VMMDevReq_CtlGuestFilterMask 42
|
---|
86 |
|
---|
87 | #define VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE RT_BIT(0)
|
---|
88 | #define VMMDEV_MOUSE_HOST_WANTS_ABSOLUTE RT_BIT(1)
|
---|
89 | #define VMMDEV_MOUSE_GUEST_NEEDS_HOST_CURSOR RT_BIT(2)
|
---|
90 | #define VMMDEV_MOUSE_HOST_CANNOT_HWPOINTER RT_BIT(3)
|
---|
91 |
|
---|
92 | typedef struct
|
---|
93 | {
|
---|
94 | VMMDevRequestHeader header;
|
---|
95 | unsigned long mouseFeatures;
|
---|
96 | unsigned long pointerXPos;
|
---|
97 | unsigned long pointerYPos;
|
---|
98 | } VMMDevReqMouseStatus;
|
---|
99 |
|
---|
100 | typedef struct VBoxGuestFilterMaskInfo
|
---|
101 | {
|
---|
102 | unsigned long u32OrMask;
|
---|
103 | unsigned long u32NotMask;
|
---|
104 | } VBoxGuestFilterMaskInfo;
|
---|
105 |
|
---|
106 |
|
---|
107 | /* From VMMDev.h: */
|
---|
108 | #define VMMDEV_VERSION 0x00010004UL
|
---|
109 |
|
---|
110 | #define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED RT_BIT(0)
|
---|
111 | #define VMMDEV_EVENT_HGCM RT_BIT(1)
|
---|
112 | #define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST RT_BIT(2)
|
---|
113 | #define VMMDEV_EVENT_JUDGE_CREDENTIALS RT_BIT(3)
|
---|
114 | #define VMMDEV_EVENT_RESTORED RT_BIT(4)
|
---|
115 |
|
---|
116 | /** @} */
|
---|
117 |
|
---|
118 | #endif
|
---|
119 |
|
---|