Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
711 B

  1. #include "stdafx.h"
  2. #include "Ctrl.h"
  3. #include "OldInterpolation.h"
  4. const IID * OldLinearInterpolation::s_rgpIID[] =
  5. {
  6. &__uuidof(IUnknown),
  7. &__uuidof(IInterpolation),
  8. &__uuidof(ILinearInterpolation),
  9. NULL
  10. };
  11. const IID * OldLogInterpolation::s_rgpIID[] =
  12. {
  13. &__uuidof(IUnknown),
  14. &__uuidof(IInterpolation),
  15. &__uuidof(ILogInterpolation),
  16. NULL
  17. };
  18. const IID * OldExpInterpolation::s_rgpIID[] =
  19. {
  20. &__uuidof(IUnknown),
  21. &__uuidof(IInterpolation),
  22. &__uuidof(IExpInterpolation),
  23. NULL
  24. };
  25. const IID * OldSInterpolation::s_rgpIID[] =
  26. {
  27. &__uuidof(IUnknown),
  28. &__uuidof(IInterpolation),
  29. &__uuidof(ISInterpolation),
  30. NULL
  31. };