VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.h@ 33876

Last change on this file since 33876 was 33048, checked in by vboxsync, 14 years ago

Additions/WINNT/Graphics: make VBOX_WITH_HGSMI conditional code unconditional

  • 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 *
3 * VBoxGuest -- VirtualBox Win 2000/XP guest video driver
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
16#ifndef __HELPER_h__
17#define __HELPER_h__
18
19// Windows version identifier
20typedef enum
21{
22 UNKNOWN_WINVERSION = 0,
23 WINNT4 = 1,
24 WIN2K = 2,
25 WINXP = 3,
26 WINVISTA = 4,
27 WIN7 = 5
28} winVersion_t;
29
30
31extern "C"
32{
33BOOLEAN vboxQueryDisplayRequest(uint32_t *xres, uint32_t *yres, uint32_t *bpp, uint32_t *pDisplayId);
34BOOLEAN vboxLikesVideoMode(uint32_t display, uint32_t width, uint32_t height, uint32_t bpp);
35ULONG vboxGetHeightReduction();
36BOOLEAN vboxQueryPointerPos(uint16_t *pointerXPos, uint16_t *pointerYPos);
37BOOLEAN vboxQueryHostWantsAbsolute();
38winVersion_t vboxQueryWinVersion();
39
40#include "vboxioctl.h"
41
42int vboxVbvaEnable (ULONG ulEnable, VBVAENABLERESULT *pVbvaResult);
43}
44
45
46/* debug printf */
47#define OSDBGPRINT(a) DbgPrint a
48
49/* dprintf */
50#if (defined(DEBUG) && !defined(NO_LOGGING)) || defined(LOG_ENABLED)
51# ifdef LOG_TO_BACKDOOR
52# include <VBox/log.h>
53# define dprintf(a) RTLogBackdoorPrintf a
54# else
55# define dprintf(a) OSDBGPRINT(a)
56# endif
57/* flow log */
58# define dfprintf dprintf
59/* release log */
60# define drprintf dprintf
61#else
62# define dprintf(a) do {} while (0)
63/* flow log */
64# define dfprintf dprintf
65/* release log */
66# define drprintf dprintf
67#endif
68
69/* dprintf2 - extended logging. */
70#if 0
71# define dprintf2 dprintf
72#else
73# define dprintf2(a) do { } while (0)
74#endif
75
76#ifdef DEBUG_misha
77/* specifies whether the vboxVDbgBreakF should break in the debugger
78 * windbg seems to have some issues when there is a lot ( >~50) of sw breakpoints defined
79 * to simplify things we just insert breaks for the case of intensive debugging WDDM driver*/
80extern bool g_bVBoxVDbgBreakF;
81extern bool g_bVBoxVDbgBreakFv;
82#define vboxVDbgBreakF() do { if (g_bVBoxVDbgBreakF) AssertBreakpoint(); } while (0)
83#define vboxVDbgBreakFv() do { if (g_bVBoxVDbgBreakFv) AssertBreakpoint(); } while (0)
84#else
85#define vboxVDbgBreakF() do { } while (0)
86#define vboxVDbgBreakFv() do { } while (0)
87#endif
88
89#endif // __HELPER_h__
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