VirtualBox

source: vbox/trunk/include/VBox/VBoxGuest16.h@ 21224

Last change on this file since 21224 was 21224, checked in by vboxsync, 15 years ago

VBoxGuest.* cleanup.

  • Property svn:eol-style set to native
File size: 3.7 KB
Line 
1/** @file
2 * VBoxGuest - VirtualBox Guest Additions Driver 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#define VBOXGUEST_DEVICE_NAME "vboxgst$"
36
37/* aka VBOXGUESTOS2IDCCONNECT */
38typedef struct VBGOS2IDC
39{
40 unsigned long u32Version;
41 unsigned long u32Session;
42 unsigned long pfnServiceEP;
43 short (__cdecl __far *fpfnServiceEP)(unsigned long u32Session, unsigned short iFunction,
44 void __far *fpvData, unsigned short cbData, unsigned short __far *pcbDataReturned);
45 unsigned long fpfnServiceAsmEP;
46} VBGOS2IDC;
47typedef VBGOS2IDC *PVBGOS2IDC;
48
49#define VBOXGUEST_IOCTL_WAITEVENT 2
50#define VBOXGUEST_IOCTL_VMMREQUEST 3
51#define VBOXGUEST_IOCTL_OS2_IDC_DISCONNECT 48
52
53#define VBOXGUEST_WAITEVENT_OK 0
54#define VBOXGUEST_WAITEVENT_TIMEOUT 1
55#define VBOXGUEST_WAITEVENT_INTERRUPTED 2
56#define VBOXGUEST_WAITEVENT_ERROR 3
57
58typedef struct _VBoxGuestWaitEventInfo
59{
60 unsigned long u32TimeoutIn;
61 unsigned long u32EventMaskIn;
62 unsigned long u32Result;
63 unsigned long u32EventFlagsOut;
64} VBoxGuestWaitEventInfo;
65
66
67#define VMMDEV_REQUEST_HEADER_VERSION (0x10001UL)
68typedef struct
69{
70 unsigned long size;
71 unsigned long version;
72 unsigned long requestType;
73 signed long rc;
74 unsigned long reserved1;
75 unsigned long reserved2;
76} VMMDevRequestHeader;
77
78#define VMMDevReq_GetMouseStatus 1
79#define VMMDevReq_SetMouseStatus 2
80#define VMMDevReq_CtlGuestFilterMask 42
81
82#define VBOXGUEST_MOUSE_GUEST_CAN_ABSOLUTE RT_BIT(0)
83#define VBOXGUEST_MOUSE_HOST_CAN_ABSOLUTE RT_BIT(1)
84#define VBOXGUEST_MOUSE_GUEST_NEEDS_HOST_CURSOR RT_BIT(2)
85#define VBOXGUEST_MOUSE_HOST_CANNOT_HWPOINTER RT_BIT(3)
86
87typedef struct
88{
89 VMMDevRequestHeader header;
90 unsigned long mouseFeatures;
91 unsigned long pointerXPos;
92 unsigned long pointerYPos;
93} VMMDevReqMouseStatus;
94
95typedef struct
96{
97 VMMDevRequestHeader header;
98 unsigned long u32OrMask;
99 unsigned long u32NotMask;
100} VMMDevCtlGuestFilterMask;
101
102
103/* From VMMDev.h: */
104#define VMMDEV_VERSION 0x00010004UL
105
106#define VMMDEV_EVENT_MOUSE_CAPABILITIES_CHANGED RT_BIT(0)
107#define VMMDEV_EVENT_HGCM RT_BIT(1)
108#define VMMDEV_EVENT_DISPLAY_CHANGE_REQUEST RT_BIT(2)
109#define VMMDEV_EVENT_JUDGE_CREDENTIALS RT_BIT(3)
110#define VMMDEV_EVENT_RESTORED RT_BIT(4)
111
112#endif
113
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use