1 | /* $Id: VBoxDxVkDeps.cpp 96497 2022-08-25 17:04:27Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBoxDxVk - For dragging in library objects.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * Oracle Corporation confidential
|
---|
10 | */
|
---|
11 |
|
---|
12 |
|
---|
13 | /*********************************************************************************************************************************
|
---|
14 | * Header Files *
|
---|
15 | *********************************************************************************************************************************/
|
---|
16 | #include <VBox/types.h>
|
---|
17 |
|
---|
18 | #include <d3d11.h>
|
---|
19 |
|
---|
20 | /** Just a dummy global structure containing a bunch of
|
---|
21 | * function pointers to code which is wanted in the link.
|
---|
22 | */
|
---|
23 | struct CLANG11WEIRDNESS { PFNRT pfn; } g_apfnVBoxDxVkDeps[] =
|
---|
24 | {
|
---|
25 | { (PFNRT)D3D11CreateDevice },
|
---|
26 | { NULL },
|
---|
27 | };
|
---|
28 |
|
---|