Source code of Windows XP (NT5)
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

  1. // Copyright (c) 1999 Microsoft Corporation. All Rights Reserved.
  2. import "unknwn.idl";
  3. import "strmif.idl";
  4. interface IAMFilterData;
  5. // ------------------------------------------------------------------------
  6. //
  7. // IAMFilterData - helper functions implemented on the filter mapper
  8. //
  9. // ------------------------------------------------------------------------
  10. [
  11. object,
  12. uuid(97f7c4d4-547b-4a5f-8332-536430ad2e4d),
  13. pointer_default(unique)
  14. ]
  15. interface IAMFilterData : IUnknown {
  16. HRESULT ParseFilterData(
  17. [in, size_is(cb)] BYTE *rgbFilterData,
  18. [in] ULONG cb,
  19. [out] BYTE **prgbRegFilter2);
  20. HRESULT CreateFilterData(
  21. [in] REGFILTER2 *prf2,
  22. [out] BYTE **prgbFilterData,
  23. [out] ULONG *pcb);
  24. }