Leaked source code of windows server 2003
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.

33 lines
992 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998.
  5. //
  6. // File: FiltNtfy.idl
  7. //
  8. // Contents: IFilterStatus interface definition
  9. //
  10. // History: 15-Jan-1998 KyleP Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #include "idlmulti.h"
  14. #ifdef IMPORT_IDL_DEPENDENTS
  15. import "oaidl.idl";
  16. #endif
  17. REMOTED_INTERFACE(F4EB8260-8DDA-11D1-B3AA-00A0C9063796)
  18. interface IFilterStatus : IUnknown
  19. {
  20. SCODE Initialize( [in, string] WCHAR const * pwszCatalogName,
  21. [in, string] WCHAR const * pwszCatalogPath );
  22. SCODE PreFilter( [in, string] WCHAR const * pwszPath );
  23. SCODE FilterLoad( [in, string] WCHAR const * pwszPath,
  24. [in] SCODE scFilterStatus );
  25. SCODE PostFilter( [in, string] WCHAR const * pwszPath,
  26. [in] SCODE scFilterStatus );
  27. }