Kernelx Allocation impl + Logan/d3d11.x/etwplus stub

This commit is contained in:
Rodrigo Todescatto
2026-01-25 13:40:06 -03:00
parent 84afccff29
commit ac243cb503
125 changed files with 57720 additions and 40 deletions

View 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();