| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
//------------------------------------------------------------------------------ // 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 <winapifamily.h> #pragma region Desktop Family #if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) #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 /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */ #pragma endregion #endif //__DMO_H__