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.

27 lines
734 B

  1. //==========================================================================;
  2. //
  3. // inputimpl.h : additional infrastructure to support implementing IMSVidOutputDevice
  4. // nicely from c++
  5. // Copyright (c) Microsoft Corporation 1999.
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8. #pragma once
  9. #ifndef OUTPUTIMPL_H
  10. #define OUTPUTIMPL_H
  11. #include "devimpl.h"
  12. namespace MSVideoControl {
  13. template<class T, LPCGUID LibID, LPCGUID Category, class MostDerivedInterface = IMSVidOutputDevice>
  14. class DECLSPEC_NOVTABLE IMSVidOutputDeviceImpl : public IMSVidDeviceImpl<T, LibID, Category, MostDerivedInterface> {
  15. public:
  16. };
  17. }; // namespace
  18. #endif
  19. // end of file - inputimpl.h