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.

29 lines
679 B

  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__