WindowsXP/windows/advcore/duser/engine/ctrl/oldinterpolation.cpp
2025-04-27 07:49:33 -04:00

37 lines
711 B
C++

#include "stdafx.h"
#include "Ctrl.h"
#include "OldInterpolation.h"
const IID * OldLinearInterpolation::s_rgpIID[] =
{
&__uuidof(IUnknown),
&__uuidof(IInterpolation),
&__uuidof(ILinearInterpolation),
NULL
};
const IID * OldLogInterpolation::s_rgpIID[] =
{
&__uuidof(IUnknown),
&__uuidof(IInterpolation),
&__uuidof(ILogInterpolation),
NULL
};
const IID * OldExpInterpolation::s_rgpIID[] =
{
&__uuidof(IUnknown),
&__uuidof(IInterpolation),
&__uuidof(IExpInterpolation),
NULL
};
const IID * OldSInterpolation::s_rgpIID[] =
{
&__uuidof(IUnknown),
&__uuidof(IInterpolation),
&__uuidof(ISInterpolation),
NULL
};