1 | /** @file
|
---|
2 | *
|
---|
3 | * VBoxDisplay - private windows additions display header
|
---|
4 | *
|
---|
5 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
6 | *
|
---|
7 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | * available from http://www.virtualbox.org. This file is free software;
|
---|
9 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | * General Public License (GPL) as published by the Free Software
|
---|
11 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | */
|
---|
15 | #ifndef __VBoxDisplay_h__
|
---|
16 | #define __VBoxDisplay_h__
|
---|
17 |
|
---|
18 | #include <iprt/types.h>
|
---|
19 | #include <iprt/assert.h>
|
---|
20 |
|
---|
21 | #define VBOXESC_SETVISIBLEREGION 0xABCD9001
|
---|
22 | #define VBOXESC_ISVRDPACTIVE 0xABCD9002
|
---|
23 | #ifdef VBOXWDDM
|
---|
24 | # define VBOXESC_REINITVIDEOMODES 0xABCD9003
|
---|
25 | # define VBOXESC_GETVBOXVIDEOCMCMD 0xABCD9004
|
---|
26 | # define VBOXESC_DBGPRINT 0xABCD9005
|
---|
27 |
|
---|
28 | typedef struct
|
---|
29 | {
|
---|
30 | ULONG Id;
|
---|
31 | DWORD Width;
|
---|
32 | DWORD Height;
|
---|
33 | DWORD BitsPerPixel;
|
---|
34 | } VBOXWDDM_RECOMMENDVIDPN_SCREEN_INFO, *PVBOXWDDM_RECOMMENDVIDPN_SCREEN_INFO;
|
---|
35 |
|
---|
36 | typedef struct
|
---|
37 | {
|
---|
38 | uint32_t cScreenInfos;
|
---|
39 | VBOXWDDM_RECOMMENDVIDPN_SCREEN_INFO aScreenInfos[1];
|
---|
40 | } VBOXWDDM_RECOMMENDVIDPN, *PVBOXWDDM_RECOMMENDVIDPN;
|
---|
41 |
|
---|
42 | #define VBOXWDDM_RECOMMENDVIDPN_SIZE(_c) (RT_OFFSETOF(VBOXWDDM_RECOMMENDVIDPN, aScreenInfos[_c]))
|
---|
43 |
|
---|
44 | #endif /* #ifdef VBOXWDDM */
|
---|
45 |
|
---|
46 | typedef struct VBOXDISPIFESCAPE
|
---|
47 | {
|
---|
48 | int32_t escapeCode;
|
---|
49 | uint32_t u32CmdSpecific;
|
---|
50 | } VBOXDISPIFESCAPE, *PVBOXDISPIFESCAPE;
|
---|
51 |
|
---|
52 | /* ensure command body is always 8-byte-aligned*/
|
---|
53 | AssertCompile((sizeof (VBOXDISPIFESCAPE) & 7) == 0);
|
---|
54 |
|
---|
55 | #define VBOXDISPIFESCAPE_DATA_OFFSET() ((sizeof (VBOXDISPIFESCAPE) + 7) & ~7)
|
---|
56 | #define VBOXDISPIFESCAPE_DATA(_pHead, _t) ( (_t*)(((uint8_t*)(_pHead)) + VBOXDISPIFESCAPE_DATA_OFFSET()))
|
---|
57 | #define VBOXDISPIFESCAPE_DATA_SIZE(_s) ( (_s) < VBOXDISPIFESCAPE_DATA_OFFSET() ? 0 : (_s) - VBOXDISPIFESCAPE_DATA_OFFSET() )
|
---|
58 | #define VBOXDISPIFESCAPE_SIZE(_cbData) ((_cbData) ? VBOXDISPIFESCAPE_DATA_OFFSET() + (_cbData) : sizeof (VBOXDISPIFESCAPE))
|
---|
59 |
|
---|
60 | #define IOCTL_VIDEO_VBOX_SETVISIBLEREGION \
|
---|
61 | CTL_CODE(FILE_DEVICE_VIDEO, 0xA01, METHOD_BUFFERED, FILE_ANY_ACCESS)
|
---|
62 |
|
---|
63 | #endif /* __VBoxDisplay_h__ */
|
---|