mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
19 lines
353 B
C++
19 lines
353 B
C++
#pragma once
|
|
|
|
#include "Common/VtableVisitor.h"
|
|
|
|
template <>
|
|
struct VtableForEach<IDirectDrawPaletteVtbl>
|
|
{
|
|
template <typename Vtable, typename Visitor>
|
|
static void forEach(Visitor& visitor)
|
|
{
|
|
VtableForEach<IUnknownVtbl>::forEach<Vtable>(visitor);
|
|
|
|
DD_VISIT(GetCaps);
|
|
DD_VISIT(GetEntries);
|
|
DD_VISIT(Initialize);
|
|
DD_VISIT(SetEntries);
|
|
}
|
|
};
|