IMpeg2VD.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. //
  2. // IMpeg2VD.h
  3. // Desc: DirectShow sample code - custom interface
  4. //
  5. #ifndef __H_IMpeg2VD__
  6. #define __H_IMpeg2VD__
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. //----------------------------------------------------------------------------
  11. // IMpeg2VD's GUID
  12. // {BA8DA3DF-5B02-4b54-BCA2-C5FDF272BE07}
  13. DEFINE_GUID(IID_IMpeg2VD, 
  14. 0xba8da3df, 0x5b02, 0x4b54, 0xbc, 0xa2, 0xc5, 0xfd, 0xf2, 0x72, 0xbe, 0x7);
  15. //----------------------------------------------------------------------------
  16. //----------------------------------------------------------------------------
  17. // IMpeg2VD
  18. //----------------------------------------------------------------------------
  19. DECLARE_INTERFACE_(IMpeg2VD, IUnknown)
  20. {
  21. };
  22. //----------------------------------------------------------------------------
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif // __H_IMpeg2VD__