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.

28 lines
780 B

  1. //==========================================================================;
  2. //
  3. // webdvdimpl.h : additional infrastructure to support implementing IMSVidPlayback
  4. // nicely from c++
  5. // Copyright (c) Microsoft Corporation 1999.
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8. #pragma once
  9. #ifndef WEBDVDIMPL_H
  10. #define WEBDVDIMPL_H
  11. #include "playbackimpl.h"
  12. namespace MSVideoControl {
  13. template<class T, LPCGUID LibID, LPCGUID KSCategory, class MostDerivedInterface = IMSVidWebDVD>
  14. class DECLSPEC_NOVTABLE IMSVidWebDVDImpl :
  15. public IMSVidPlaybackImpl<T, LibID, KSCategory, MostDerivedInterface> {
  16. public:
  17. virtual ~IMSVidWebDVDImpl() {}
  18. };
  19. }; // namespace
  20. #endif
  21. // end of file - webdvdimpl.h