1 | /* $Id: VBoxDispCm.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 ___VBoxDispCm_h___
|
---|
20 | #define ___VBoxDispCm_h___
|
---|
21 |
|
---|
22 | typedef struct VBOXWDDMDISP_DEVICE *PVBOXWDDMDISP_DEVICE;
|
---|
23 | typedef struct VBOXWDDMDISP_CONTEXT *PVBOXWDDMDISP_CONTEXT;
|
---|
24 |
|
---|
25 | HRESULT vboxDispCmInit();
|
---|
26 | HRESULT vboxDispCmTerm();
|
---|
27 |
|
---|
28 | HRESULT vboxDispCmCtxDestroy(PVBOXWDDMDISP_DEVICE pDevice, PVBOXWDDMDISP_CONTEXT pContext);
|
---|
29 | HRESULT vboxDispCmCtxCreate(PVBOXWDDMDISP_DEVICE pDevice, PVBOXWDDMDISP_CONTEXT pContext);
|
---|
30 |
|
---|
31 | HRESULT vboxDispCmCmdGet(PVBOXDISPIFESCAPE_GETVBOXVIDEOCMCMD pCmd, uint32_t cbCmd, DWORD dwMilliseconds);
|
---|
32 |
|
---|
33 | HRESULT vboxDispCmCmdInterruptWait();
|
---|
34 |
|
---|
35 | void vboxDispCmLog(LPCSTR pszMsg);
|
---|
36 |
|
---|
37 | #endif /* #ifdef ___VBoxDispCm_h___ */
|
---|