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.

236 lines
6.1 KiB

  1. #pragma warning( disable: 4049 ) /* more than 64k source lines */
  2. /* this ALWAYS GENERATED file contains the definitions for the interfaces */
  3. /* File created by MIDL compiler version 6.00.0347 */
  4. /* Compiler settings for filtntfy.idl:
  5. Oicf, W1, Zp8, env=Win32 (32b run)
  6. protocol : dce , ms_ext, c_ext, robust
  7. error checks: allocation ref bounds_check enum stub_data
  8. VC __declspec() decoration level:
  9. __declspec(uuid()), __declspec(selectany), __declspec(novtable)
  10. DECLSPEC_UUID(), MIDL_INTERFACE()
  11. */
  12. //@@MIDL_FILE_HEADING( )
  13. /* verify that the <rpcndr.h> version is high enough to compile this file*/
  14. #ifndef __REQUIRED_RPCNDR_H_VERSION__
  15. #define __REQUIRED_RPCNDR_H_VERSION__ 475
  16. #endif
  17. #include "rpc.h"
  18. #include "rpcndr.h"
  19. #ifndef __RPCNDR_H_VERSION__
  20. #error this stub requires an updated version of <rpcndr.h>
  21. #endif // __RPCNDR_H_VERSION__
  22. #ifndef COM_NO_WINDOWS_H
  23. #include "windows.h"
  24. #include "ole2.h"
  25. #endif /*COM_NO_WINDOWS_H*/
  26. #ifndef __filtntfy_h__
  27. #define __filtntfy_h__
  28. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  29. #pragma once
  30. #endif
  31. /* Forward Declarations */
  32. #ifndef __IFilterStatus_FWD_DEFINED__
  33. #define __IFilterStatus_FWD_DEFINED__
  34. typedef interface IFilterStatus IFilterStatus;
  35. #endif /* __IFilterStatus_FWD_DEFINED__ */
  36. /* header files for imported files */
  37. #include "oaidl.h"
  38. #ifdef __cplusplus
  39. extern "C"{
  40. #endif
  41. void * __RPC_USER MIDL_user_allocate(size_t);
  42. void __RPC_USER MIDL_user_free( void * );
  43. #ifndef __IFilterStatus_INTERFACE_DEFINED__
  44. #define __IFilterStatus_INTERFACE_DEFINED__
  45. /* interface IFilterStatus */
  46. /* [unique][uuid][object] */
  47. EXTERN_C const IID IID_IFilterStatus;
  48. #if defined(__cplusplus) && !defined(CINTERFACE)
  49. MIDL_INTERFACE("F4EB8260-8DDA-11D1-B3AA-00A0C9063796")
  50. IFilterStatus : public IUnknown
  51. {
  52. public:
  53. virtual SCODE STDMETHODCALLTYPE Initialize(
  54. /* [string][in] */ const WCHAR *pwszCatalogName,
  55. /* [string][in] */ const WCHAR *pwszCatalogPath) = 0;
  56. virtual SCODE STDMETHODCALLTYPE PreFilter(
  57. /* [string][in] */ const WCHAR *pwszPath) = 0;
  58. virtual SCODE STDMETHODCALLTYPE FilterLoad(
  59. /* [string][in] */ const WCHAR *pwszPath,
  60. /* [in] */ SCODE scFilterStatus) = 0;
  61. virtual SCODE STDMETHODCALLTYPE PostFilter(
  62. /* [string][in] */ const WCHAR *pwszPath,
  63. /* [in] */ SCODE scFilterStatus) = 0;
  64. };
  65. #else /* C style interface */
  66. typedef struct IFilterStatusVtbl
  67. {
  68. BEGIN_INTERFACE
  69. HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
  70. IFilterStatus * This,
  71. /* [in] */ REFIID riid,
  72. /* [iid_is][out] */ void **ppvObject);
  73. ULONG ( STDMETHODCALLTYPE *AddRef )(
  74. IFilterStatus * This);
  75. ULONG ( STDMETHODCALLTYPE *Release )(
  76. IFilterStatus * This);
  77. SCODE ( STDMETHODCALLTYPE *Initialize )(
  78. IFilterStatus * This,
  79. /* [string][in] */ const WCHAR *pwszCatalogName,
  80. /* [string][in] */ const WCHAR *pwszCatalogPath);
  81. SCODE ( STDMETHODCALLTYPE *PreFilter )(
  82. IFilterStatus * This,
  83. /* [string][in] */ const WCHAR *pwszPath);
  84. SCODE ( STDMETHODCALLTYPE *FilterLoad )(
  85. IFilterStatus * This,
  86. /* [string][in] */ const WCHAR *pwszPath,
  87. /* [in] */ SCODE scFilterStatus);
  88. SCODE ( STDMETHODCALLTYPE *PostFilter )(
  89. IFilterStatus * This,
  90. /* [string][in] */ const WCHAR *pwszPath,
  91. /* [in] */ SCODE scFilterStatus);
  92. END_INTERFACE
  93. } IFilterStatusVtbl;
  94. interface IFilterStatus
  95. {
  96. CONST_VTBL struct IFilterStatusVtbl *lpVtbl;
  97. };
  98. #ifdef COBJMACROS
  99. #define IFilterStatus_QueryInterface(This,riid,ppvObject) \
  100. (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
  101. #define IFilterStatus_AddRef(This) \
  102. (This)->lpVtbl -> AddRef(This)
  103. #define IFilterStatus_Release(This) \
  104. (This)->lpVtbl -> Release(This)
  105. #define IFilterStatus_Initialize(This,pwszCatalogName,pwszCatalogPath) \
  106. (This)->lpVtbl -> Initialize(This,pwszCatalogName,pwszCatalogPath)
  107. #define IFilterStatus_PreFilter(This,pwszPath) \
  108. (This)->lpVtbl -> PreFilter(This,pwszPath)
  109. #define IFilterStatus_FilterLoad(This,pwszPath,scFilterStatus) \
  110. (This)->lpVtbl -> FilterLoad(This,pwszPath,scFilterStatus)
  111. #define IFilterStatus_PostFilter(This,pwszPath,scFilterStatus) \
  112. (This)->lpVtbl -> PostFilter(This,pwszPath,scFilterStatus)
  113. #endif /* COBJMACROS */
  114. #endif /* C style interface */
  115. SCODE STDMETHODCALLTYPE IFilterStatus_Initialize_Proxy(
  116. IFilterStatus * This,
  117. /* [string][in] */ const WCHAR *pwszCatalogName,
  118. /* [string][in] */ const WCHAR *pwszCatalogPath);
  119. void __RPC_STUB IFilterStatus_Initialize_Stub(
  120. IRpcStubBuffer *This,
  121. IRpcChannelBuffer *_pRpcChannelBuffer,
  122. PRPC_MESSAGE _pRpcMessage,
  123. DWORD *_pdwStubPhase);
  124. SCODE STDMETHODCALLTYPE IFilterStatus_PreFilter_Proxy(
  125. IFilterStatus * This,
  126. /* [string][in] */ const WCHAR *pwszPath);
  127. void __RPC_STUB IFilterStatus_PreFilter_Stub(
  128. IRpcStubBuffer *This,
  129. IRpcChannelBuffer *_pRpcChannelBuffer,
  130. PRPC_MESSAGE _pRpcMessage,
  131. DWORD *_pdwStubPhase);
  132. SCODE STDMETHODCALLTYPE IFilterStatus_FilterLoad_Proxy(
  133. IFilterStatus * This,
  134. /* [string][in] */ const WCHAR *pwszPath,
  135. /* [in] */ SCODE scFilterStatus);
  136. void __RPC_STUB IFilterStatus_FilterLoad_Stub(
  137. IRpcStubBuffer *This,
  138. IRpcChannelBuffer *_pRpcChannelBuffer,
  139. PRPC_MESSAGE _pRpcMessage,
  140. DWORD *_pdwStubPhase);
  141. SCODE STDMETHODCALLTYPE IFilterStatus_PostFilter_Proxy(
  142. IFilterStatus * This,
  143. /* [string][in] */ const WCHAR *pwszPath,
  144. /* [in] */ SCODE scFilterStatus);
  145. void __RPC_STUB IFilterStatus_PostFilter_Stub(
  146. IRpcStubBuffer *This,
  147. IRpcChannelBuffer *_pRpcChannelBuffer,
  148. PRPC_MESSAGE _pRpcMessage,
  149. DWORD *_pdwStubPhase);
  150. #endif /* __IFilterStatus_INTERFACE_DEFINED__ */
  151. /* Additional Prototypes for ALL interfaces */
  152. /* end of Additional Prototypes */
  153. #ifdef __cplusplus
  154. }
  155. #endif
  156. #endif