1 | /* $Id: VBoxDispMini.h 69498 2017-10-28 15:07:25Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox XPDM Display driver, helper functions which interacts with our miniport driver
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef VBOXDISPMINI_H
|
---|
19 | #define VBOXDISPMINI_H
|
---|
20 |
|
---|
21 | #include "VBoxDisp.h"
|
---|
22 |
|
---|
23 | int VBoxDispMPGetVideoModes(HANDLE hDriver, PVIDEO_MODE_INFORMATION *ppModesTable, ULONG *cModes);
|
---|
24 | int VBoxDispMPGetPointerCaps(HANDLE hDriver, PVIDEO_POINTER_CAPABILITIES pCaps);
|
---|
25 | int VBoxDispMPSetCurrentMode(HANDLE hDriver, ULONG ulMode);
|
---|
26 | int VBoxDispMPMapMemory(PVBOXDISPDEV pDev, PVIDEO_MEMORY_INFORMATION pMemInfo);
|
---|
27 | int VBoxDispMPUnmapMemory(PVBOXDISPDEV pDev);
|
---|
28 | int VBoxDispMPQueryHGSMIInfo(HANDLE hDriver, QUERYHGSMIRESULT *pInfo);
|
---|
29 | int VBoxDispMPQueryHGSMICallbacks(HANDLE hDriver, HGSMIQUERYCALLBACKS *pCallbacks);
|
---|
30 | int VBoxDispMPHGSMIQueryPortProcs(HANDLE hDriver, HGSMIQUERYCPORTPROCS *pPortProcs);
|
---|
31 | int VBoxDispMPVHWAQueryInfo(HANDLE hDriver, VHWAQUERYINFO *pInfo);
|
---|
32 | int VBoxDispMPSetColorRegisters(HANDLE hDriver, PVIDEO_CLUT pClut, DWORD cbClut);
|
---|
33 | int VBoxDispMPDisablePointer(HANDLE hDriver);
|
---|
34 | int VBoxDispMPSetPointerPosition(HANDLE hDriver, PVIDEO_POINTER_POSITION pPos);
|
---|
35 | int VBoxDispMPSetPointerAttrs(PVBOXDISPDEV pDev);
|
---|
36 | int VBoxDispMPSetVisibleRegion(HANDLE hDriver, PRTRECT pRects, DWORD cRects);
|
---|
37 | int VBoxDispMPResetDevice(HANDLE hDriver);
|
---|
38 | int VBoxDispMPShareVideoMemory(HANDLE hDriver, PVIDEO_SHARE_MEMORY pSMem, PVIDEO_SHARE_MEMORY_INFORMATION pSMemInfo);
|
---|
39 | int VBoxDispMPUnshareVideoMemory(HANDLE hDriver, PVIDEO_SHARE_MEMORY pSMem);
|
---|
40 | int VBoxDispMPQueryRegistryFlags(HANDLE hDriver, ULONG *pulFlags);
|
---|
41 |
|
---|
42 | #endif /* !VBOXDISPMINI_H */
|
---|