1
0
mirror of https://github.com/narzoul/DDrawCompat synced 2024-12-30 08:55:36 +01:00
DDrawCompat/DDrawCompat/DirectDrawPaletteVtblVisitor.h
2015-12-25 01:57:44 +01:00

19 lines
361 B
C++

#pragma once
#include "DDrawVtableVisitor.h"
template <>
struct DDrawVtableForEach<IDirectDrawPaletteVtbl>
{
template <typename Vtable, typename Visitor>
static void forEach(Visitor& visitor)
{
DDrawVtableForEach<IUnknownVtbl>::forEach<Vtable>(visitor);
DD_VISIT(GetCaps);
DD_VISIT(GetEntries);
DD_VISIT(Initialize);
DD_VISIT(SetEntries);
}
};