dmo.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. //------------------------------------------------------------------------------
  2. // File: DMO.h
  3. //
  4. // Desc: Headers needed by almost all DMOs.
  5. //
  6. // Copyright (c) 1999 - 2000, Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #ifndef __DMO_H__
  9. #define __DMO_H__
  10. #include "mediaerr.h"
  11. // When using ATL we get collisions on Lock so in this case rename
  12. // IMediaObject::Lock to IMediaObject::DMOLock
  13. #ifdef FIX_LOCK_NAME
  14. #define Lock DMOLock
  15. #endif
  16. #include "mediaobj.h"
  17. #ifdef FIX_LOCK_NAME
  18. #undef Lock
  19. #endif
  20. #include "dmoreg.h"
  21. #include "dmort.h"
  22. #endif //__DMO_H__