1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/D3dDdi/DeviceCallbacks.cpp
2021-03-16 14:13:20 +01:00

27 lines
554 B
C++

#include <Common/CompatVtable.h>
#include <D3dDdi/DeviceCallbacks.h>
#include <D3dDdi/Visitors/DeviceCallbacksVisitor.h>
namespace
{
const D3DDDI_DEVICECALLBACKS& getOrigVtable(HANDLE /*device*/)
{
return CompatVtable<D3DDDI_DEVICECALLBACKS>::s_origVtable;
}
constexpr void setCompatVtable(D3DDDI_DEVICECALLBACKS& /*vtable*/)
{
}
}
namespace D3dDdi
{
namespace DeviceCallbacks
{
void hookVtable(const D3DDDI_DEVICECALLBACKS & vtable, UINT version)
{
CompatVtable<D3DDDI_DEVICECALLBACKS>::hookCallbackVtable(vtable, version);
}
}
}