mirror of
https://codeberg.org/WinDurango/WinDurango.git
synced 2026-04-18 02:23:34 -04:00
18 lines
363 B
C++
18 lines
363 B
C++
#pragma once
|
|
#include "d3d11.x.h"
|
|
|
|
template<abi_t ABI>
|
|
class GraphicsUnknown : public xbox::IGraphicsUnknown<ABI>
|
|
{
|
|
public:
|
|
//
|
|
// IUnknown
|
|
//
|
|
HRESULT QueryInterface(REFIID riid, void** ppvObject);
|
|
ULONG AddRef();
|
|
ULONG Release();
|
|
};
|
|
|
|
#undef ABI_INTERFACE
|
|
#define ABI_INTERFACE(ABI) GraphicsUnknown<ABI>
|
|
D3D11_DECLARE_ABI_TEMPLATES(extern); |