VirtualBox

source: vbox/trunk/include/VBox/VBoxDev.h@ 3633

Last change on this file since 3633 was 3633, checked in by vboxsync, 17 years ago

VBox_hdr_h -> _VBox_hdr_h

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
1/** @file
2 * Virtual Device for Guest <-> VMM/Host communication
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 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef ___VBox_VBoxDev_h
22#define ___VBox_VBoxDev_h
23
24#include <VBox/cdefs.h>
25
26__BEGIN_DECLS
27
28/** Mouse capability bits
29 * @{ */
30/** the guest requests absolute mouse coordinates (guest additions installed) */
31#define VMMDEV_MOUSEGUESTWANTSABS BIT(0)
32/** the host wants to send absolute mouse coordinates (input not captured) */
33#define VMMDEV_MOUSEHOSTWANTSABS BIT(1)
34/** the guest needs a hardware cursor on host. When guest additions are installed
35 * and the host has promised to display the cursor itself, the guest installs a
36 * hardware mouse driver. Don't ask the guest to switch to a software cursor then. */
37#define VMMDEV_MOUSEGUESTNEEDSHOSTCUR BIT(2)
38/** the host is NOT able to draw the cursor itself (e.g. L4 console) */
39#define VMMDEV_MOUSEHOSTCANNOTHWPOINTER BIT(3)
40/** @} */
41
42/** Flags for pfnSetCredentials
43 * @{ */
44/** the guest should perform a logon with the credentials */
45#define VMMDEV_SETCREDENTIALS_GUESTLOGON BIT(0)
46/** the guest should prevent local logons */
47#define VMMDEV_SETCREDENTIALS_NOLOCALLOGON BIT(1)
48/** the guest should verify the credentials */
49#define VMMDEV_SETCREDENTIALS_JUDGE BIT(15)
50/** @} */
51
52/** Guest capability bits
53 * @{ */
54/** the guest supports seamless display rendering */
55#define VMMDEV_GUEST_SUPPORTS_SEAMLESS BIT(0)
56/** the guest supports mapping guest to host windows */
57#define VMMDEV_GUEST_SUPPORTS_GUEST_HOST_WINDOW_MAPPING BIT(1)
58/** @} */
59
60/** Size of VMMDev RAM region accessible by guest.
61 * Must be big enough to contain VMMDevMemory structure (see VBoxGuest.h)
62 * For now: 4 megabyte.
63 */
64#define VMMDEV_RAM_SIZE (4 * 256 * PAGE_SIZE)
65
66__END_DECLS
67
68#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette