You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
			
		
		
		
		
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			651 B
		
	
	
	
		
			C
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			651 B
		
	
	
	
		
			C
		
	
//------------------------------------------------------------------------------
 | 
						|
// File: DMO.h
 | 
						|
//
 | 
						|
// Desc: Headers needed by almost all DMOs.
 | 
						|
//
 | 
						|
// Copyright (c) 1999 - 2001, Microsoft Corporation.  All rights reserved.
 | 
						|
//------------------------------------------------------------------------------
 | 
						|
 | 
						|
 | 
						|
#ifndef __DMO_H__
 | 
						|
#define __DMO_H__
 | 
						|
 | 
						|
 | 
						|
#include "mediaerr.h"
 | 
						|
 | 
						|
// When using ATL we get collisions on Lock, so in this case rename
 | 
						|
// IMediaObject::Lock to IMediaObject::DMOLock
 | 
						|
 | 
						|
#ifdef FIX_LOCK_NAME
 | 
						|
#define Lock DMOLock
 | 
						|
#endif
 | 
						|
#include "mediaobj.h"
 | 
						|
#ifdef FIX_LOCK_NAME
 | 
						|
#undef Lock
 | 
						|
#endif
 | 
						|
#include "dmoreg.h"
 | 
						|
#include "dmort.h"
 | 
						|
 | 
						|
#endif //__DMO_H__
 |