VirtualBox

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

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

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/** @file
2 *
3 * VBoxGuest -- VirtualBox Win 2000/XP guest video driver
4 *
5 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
11 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
12 * distribution. VirtualBox OSE is distributed in the hope that it will
13 * 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} winVersion_t;
27
28
29extern "C"
30{
31BOOLEAN vboxQueryDisplayRequest(uint32_t *xres, uint32_t *yres, uint32_t *bpp);
32BOOLEAN vboxLikesVideoMode(uint32_t width, uint32_t height, uint32_t bpp);
33ULONG vboxGetHeightReduction();
34BOOLEAN vboxQueryPointerPos(uint16_t *pointerXPos, uint16_t *pointerYPos);
35BOOLEAN vboxQueryHostWantsAbsolute();
36winVersion_t vboxQueryWinVersion();
37BOOLEAN vboxUpdatePointerShape(PVIDEO_POINTER_ATTRIBUTES pointerAttr, uint32_t cbLength);
38
39#include "vboxioctl.h"
40
41int vboxVbvaEnable (ULONG ulEnable, VBVAENABLERESULT *pVbvaResult);
42}
43
44
45/* debug printf */
46# define OSDBGPRINT(a) DbgPrint a
47
48/* dprintf */
49#if (defined(DEBUG) && !defined(NO_LOGGING)) || defined(LOG_ENABLED)
50# ifdef LOG_TO_BACKDOOR
51# include <VBox/log.h>
52# define dprintf(a) RTLogBackdoorPrintf a
53# else
54# define dprintf(a) OSDBGPRINT(a)
55# endif
56#else
57# define dprintf(a) do {} while (0)
58#endif
59
60/* dprintf2 - extended logging. */
61#if 0
62# define dprintf2 dprintf
63#else
64# define dprintf2(a) do { } while (0)
65#endif
66
67
68#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