1 | /* $Id: VBoxUhgsmiKmt.h 62522 2016-07-22 19:17:25Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | * VBoxVideo Display D3D User mode dll
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2011-2016 Oracle Corporation
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef ___VBoxUhgsmiKmt_h__
|
---|
20 | #define ___VBoxUhgsmiKmt_h__
|
---|
21 |
|
---|
22 | #include "VBoxDispD3DCmn.h"
|
---|
23 |
|
---|
24 |
|
---|
25 | typedef struct VBOXUHGSMI_PRIVATE_KMT
|
---|
26 | {
|
---|
27 | VBOXUHGSMI_PRIVATE_BASE BasePrivate;
|
---|
28 | VBOXDISPKMT_CALLBACKS Callbacks;
|
---|
29 | VBOXDISPKMT_ADAPTER Adapter;
|
---|
30 | VBOXDISPKMT_DEVICE Device;
|
---|
31 | VBOXDISPKMT_CONTEXT Context;
|
---|
32 | } VBOXUHGSMI_PRIVATE_KMT, *PVBOXUHGSMI_PRIVATE_KMT;
|
---|
33 |
|
---|
34 | #define VBOXUHGSMIKMT_GET_PRIVATE(_p, _t) ((_t*)(((uint8_t*)_p) - RT_OFFSETOF(_t, BasePrivate.Base)))
|
---|
35 | #define VBOXUHGSMIKMT_GET(_p) VBOXUHGSMIKMT_GET_PRIVATE(_p, VBOXUHGSMI_PRIVATE_KMT)
|
---|
36 |
|
---|
37 | HRESULT vboxUhgsmiKmtDestroy(PVBOXUHGSMI_PRIVATE_KMT pHgsmi);
|
---|
38 |
|
---|
39 | HRESULT vboxUhgsmiKmtCreate(PVBOXUHGSMI_PRIVATE_KMT pHgsmi, BOOL bD3D);
|
---|
40 |
|
---|
41 | #endif /* #ifndef ___VBoxUhgsmiKmt_h__ */
|
---|