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