mirror of
https://codeberg.org/WinDurango/WinDurango.git
synced 2026-04-18 10:33:33 -04:00
Kernelx Allocation impl + Logan/d3d11.x/etwplus stub
This commit is contained in:
29
d3d11.x/IGraphicsUnknown.cpp
Normal file
29
d3d11.x/IGraphicsUnknown.cpp
Normal file
@@ -0,0 +1,29 @@
|
||||
#include "IGraphicsUnknown.h"
|
||||
|
||||
//
|
||||
// IUnknown
|
||||
//
|
||||
template<abi_t ABI>
|
||||
HRESULT GraphicsUnknown<ABI>::QueryInterface(REFIID riid, void** ppvObject)
|
||||
{
|
||||
IMPLEMENT_STUB();
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
template<abi_t ABI>
|
||||
ULONG GraphicsUnknown<ABI>::AddRef()
|
||||
{
|
||||
IMPLEMENT_STUB();
|
||||
return {};
|
||||
}
|
||||
|
||||
template<abi_t ABI>
|
||||
ULONG GraphicsUnknown<ABI>::Release()
|
||||
{
|
||||
IMPLEMENT_STUB();
|
||||
return {};
|
||||
}
|
||||
|
||||
#undef ABI_INTERFACE
|
||||
#define ABI_INTERFACE(ABI) GraphicsUnknown<ABI>
|
||||
D3D11_DECLARE_ABI_TEMPLATES();
|
||||
Reference in New Issue
Block a user