mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
18 lines
473 B
Text
18 lines
473 B
Text
|
|
|
|
import "unknwn.idl";
|
|
import "objidl.idl";
|
|
import "mediaobj.idl";
|
|
|
|
cpp_quote("DEFINE_GUID(CLSID_DMOWrapperFilter, 0x94297043,0xbd82,0x4dfd,0xb0,0xde,0x81,0x77,0x73,0x9c,0x6d,0x20);")
|
|
cpp_quote("DEFINE_GUID(CLSID_DMOFilterCategory, 0xbcd5796c,0xbd52,0x4d30,0xab,0x76,0x70,0xf9,0x75,0xb8,0x91,0x99);")
|
|
|
|
[
|
|
object,
|
|
uuid(52d6f586-9f0f-4824-8fc8-e32ca04930c2),
|
|
]
|
|
interface IDMOWrapperFilter : IUnknown
|
|
{
|
|
HRESULT Init(REFCLSID clsidDMO, REFCLSID catDMO);
|
|
}
|
|
|