mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
27 lines
554 B
C++
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);
|
|
}
|
|
}
|
|
}
|