mirror of https://github.com/tongzx/nt5src
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
772 B
29 lines
772 B
// Copyright (c) 1999 Microsoft Corporation. All Rights Reserved.
|
|
import "unknwn.idl";
|
|
import "strmif.idl";
|
|
|
|
interface IAMFilterData;
|
|
|
|
// ------------------------------------------------------------------------
|
|
//
|
|
// IAMFilterData - helper functions implemented on the filter mapper
|
|
//
|
|
// ------------------------------------------------------------------------
|
|
|
|
[
|
|
object,
|
|
uuid(97f7c4d4-547b-4a5f-8332-536430ad2e4d),
|
|
pointer_default(unique)
|
|
]
|
|
interface IAMFilterData : IUnknown {
|
|
|
|
HRESULT ParseFilterData(
|
|
[in, size_is(cb)] BYTE *rgbFilterData,
|
|
[in] ULONG cb,
|
|
[out] BYTE **prgbRegFilter2);
|
|
|
|
HRESULT CreateFilterData(
|
|
[in] REGFILTER2 *prf2,
|
|
[out] BYTE **prgbFilterData,
|
|
[out] ULONG *pcb);
|
|
}
|