1 | /** @file
|
---|
2 | * VBoxGuest - VirtualBox Guest Additions Interface, 16-bit (OS/2) header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___VBox_VBoxGuest16_h
|
---|
18 | #define ___VBox_VBoxGuest16_h
|
---|
19 |
|
---|
20 | #define BIT(bit) (1UL << (bit))
|
---|
21 |
|
---|
22 |
|
---|
23 | #define VMMDEV_VERSION 0x00010004UL
|
---|
24 |
|
---|
25 | #define VBOXGUEST_DEVICE_NAME "vboxgst$"
|
---|
26 |
|
---|
27 | /* aka VBOXGUESTOS2IDCCONNECT */
|
---|
28 | typedef struct VBGOS2IDC
|
---|
29 | {
|
---|
30 | unsigned long u32Version;
|
---|
31 | unsigned long u32Session;
|
---|
32 | unsigned long pfnServiceEP;
|
---|
33 | short (__cdecl __far *fpfnServiceEP)(unsigned long u32Session, unsigned short iFunction,
|
---|
34 | void __far *fpvData, unsigned short cbData, unsigned short __far *pcbDataReturned);
|
---|
35 | unsigned long fpfnServiceAsmEP;
|
---|
36 | } VBGOS2IDC;
|
---|
37 | typedef VBGOS2IDC *PVBGOS2IDC;
|
---|
38 |
|
---|
39 | #define VBOXGUEST_IOCTL_WAITEVENT 2
|
---|
40 | #define VBOXGUEST_IOCTL_VMMREQUEST 3
|
---|
41 | #define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT 48
|
---|
42 |
|
---|
43 |
|
---|
44 | #define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED BIT(0)
|
---|
45 | #define VMMDEV_EVENT_HGCM BIT(1)
|
---|
46 | #define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST BIT(2)
|
---|
47 | #define VMMDEV_EVENT_JUDGE_CREDENTIALS BIT(3)
|
---|
48 | #define VMMDEV_EVENT_RESTORED BIT(4)
|
---|
49 |
|
---|
50 |
|
---|
51 | #define VBOXGUEST_WAITEVENT_OK 0
|
---|
52 | #define VBOXGUEST_WAITEVENT_TIMEOUT 1
|
---|
53 | #define VBOXGUEST_WAITEVENT_INTERRUPTED 2
|
---|
54 | #define VBOXGUEST_WAITEVENT_ERROR 3
|
---|
55 |
|
---|
56 | typedef struct _VBoxGuestWaitEventInfo
|
---|
57 | {
|
---|
58 | unsigned long u32TimeoutIn;
|
---|
59 | unsigned long u32EventMaskIn;
|
---|
60 | unsigned long u32Result;
|
---|
61 | unsigned long u32EventFlagsOut;
|
---|
62 | } VBoxGuestWaitEventInfo;
|
---|
63 |
|
---|
64 |
|
---|
65 | #define VMMDEV_REQUEST_HEADER_VERSION (0x10001UL)
|
---|
66 | typedef struct
|
---|
67 | {
|
---|
68 | unsigned long size;
|
---|
69 | unsigned long version;
|
---|
70 | unsigned long requestType;
|
---|
71 | signed long rc;
|
---|
72 | unsigned long reserved1;
|
---|
73 | unsigned long reserved2;
|
---|
74 | } VMMDevRequestHeader;
|
---|
75 |
|
---|
76 | #define VMMDevReq_GetMouseStatus 1
|
---|
77 | #define VMMDevReq_SetMouseStatus 2
|
---|
78 | #define VMMDevReq_CtlGuestFilterMask 42
|
---|
79 |
|
---|
80 | #define VBOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE BIT(0)
|
---|
81 | #define VBOXGUEST_MOUSE_HOST_CAN_ABSOLUTE BIT(1)
|
---|
82 | #define VBOXGUEST_MOUSE_GUEST_NEEDS_HOST_CURSOR BIT(2)
|
---|
83 | #define VBOXGUEST_MOUSE_HOST_CANNOT_HWPOINTER BIT(3)
|
---|
84 |
|
---|
85 | typedef struct
|
---|
86 | {
|
---|
87 | VMMDevRequestHeader header;
|
---|
88 | unsigned long mouseFeatures;
|
---|
89 | unsigned long pointerXPos;
|
---|
90 | unsigned long pointerYPos;
|
---|
91 | } VMMDevReqMouseStatus;
|
---|
92 |
|
---|
93 | typedef struct
|
---|
94 | {
|
---|
95 | VMMDevRequestHeader header;
|
---|
96 | unsigned long u32OrMask;
|
---|
97 | unsigned long u32NotMask;
|
---|
98 | } VMMDevCtlGuestFilterMask;
|
---|
99 |
|
---|
100 | #endif
|
---|
101 |
|
---|