/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 7.00.0555 */ /* Compiler settings for napsystemhealthvalidator.idl: Oicf, W1, Zp8, env=Win32 (32b run), target_arch=X86 7.00.0555 protocol : dce , ms_ext, c_ext, robust error checks: allocation ref bounds_check enum stub_data VC __declspec() decoration level: __declspec(uuid()), __declspec(selectany), __declspec(novtable) DECLSPEC_UUID(), MIDL_INTERFACE() */ /* @@MIDL_FILE_HEADING( ) */ #pragma warning( disable: 4049 ) /* more than 64k source lines */ /* verify that the version is high enough to compile this file*/ #ifndef __REQUIRED_RPCNDR_H_VERSION__ #define __REQUIRED_RPCNDR_H_VERSION__ 500 #endif /* verify that the version is high enough to compile this file*/ #ifndef __REQUIRED_RPCSAL_H_VERSION__ #define __REQUIRED_RPCSAL_H_VERSION__ 100 #endif #include "rpc.h" #include "rpcndr.h" #ifndef __RPCNDR_H_VERSION__ #error this stub requires an updated version of #endif // __RPCNDR_H_VERSION__ #ifndef COM_NO_WINDOWS_H #include "windows.h" #include "ole2.h" #endif /*COM_NO_WINDOWS_H*/ #ifndef __napsystemhealthvalidator_h__ #define __napsystemhealthvalidator_h__ #if defined(_MSC_VER) && (_MSC_VER >= 1020) #pragma once #endif /* Forward Declarations */ #ifndef __INapSystemHealthValidator_FWD_DEFINED__ #define __INapSystemHealthValidator_FWD_DEFINED__ typedef interface INapSystemHealthValidator INapSystemHealthValidator; #endif /* __INapSystemHealthValidator_FWD_DEFINED__ */ #ifndef __AsyncINapSystemHealthValidator_FWD_DEFINED__ #define __AsyncINapSystemHealthValidator_FWD_DEFINED__ typedef interface AsyncINapSystemHealthValidator AsyncINapSystemHealthValidator; #endif /* __AsyncINapSystemHealthValidator_FWD_DEFINED__ */ #ifndef __INapServerCallback_FWD_DEFINED__ #define __INapServerCallback_FWD_DEFINED__ typedef interface INapServerCallback INapServerCallback; #endif /* __INapServerCallback_FWD_DEFINED__ */ #ifndef __INapSystemHealthValidationRequest_FWD_DEFINED__ #define __INapSystemHealthValidationRequest_FWD_DEFINED__ typedef interface INapSystemHealthValidationRequest INapSystemHealthValidationRequest; #endif /* __INapSystemHealthValidationRequest_FWD_DEFINED__ */ #ifndef __INapSystemHealthValidationRequest2_FWD_DEFINED__ #define __INapSystemHealthValidationRequest2_FWD_DEFINED__ typedef interface INapSystemHealthValidationRequest2 INapSystemHealthValidationRequest2; #endif /* __INapSystemHealthValidationRequest2_FWD_DEFINED__ */ /* header files for imported files */ #include "NapTypes.h" #ifdef __cplusplus extern "C"{ #endif /* interface __MIDL_itf_napsystemhealthvalidator_0000_0000 */ /* [local] */ extern RPC_IF_HANDLE __MIDL_itf_napsystemhealthvalidator_0000_0000_v0_0_c_ifspec; extern RPC_IF_HANDLE __MIDL_itf_napsystemhealthvalidator_0000_0000_v0_0_s_ifspec; #ifndef __INapSystemHealthValidator_INTERFACE_DEFINED__ #define __INapSystemHealthValidator_INTERFACE_DEFINED__ /* interface INapSystemHealthValidator */ /* [unique][async_uuid][uuid][object] */ EXTERN_C const IID IID_INapSystemHealthValidator; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("EF43D87C-5B6D-4820-8620-868907FE07D3") INapSystemHealthValidator : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Validate( /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ UINT32 hintTimeOutInMsec, /* [in] */ __RPC__in_opt INapServerCallback *callback) = 0; }; #else /* C style interface */ typedef struct INapSystemHealthValidatorVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in INapSystemHealthValidator * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in INapSystemHealthValidator * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in INapSystemHealthValidator * This); HRESULT ( STDMETHODCALLTYPE *Validate )( __RPC__in INapSystemHealthValidator * This, /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ UINT32 hintTimeOutInMsec, /* [in] */ __RPC__in_opt INapServerCallback *callback); END_INTERFACE } INapSystemHealthValidatorVtbl; interface INapSystemHealthValidator { CONST_VTBL struct INapSystemHealthValidatorVtbl *lpVtbl; }; #ifdef COBJMACROS #define INapSystemHealthValidator_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define INapSystemHealthValidator_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define INapSystemHealthValidator_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define INapSystemHealthValidator_Validate(This,request,hintTimeOutInMsec,callback) \ ( (This)->lpVtbl -> Validate(This,request,hintTimeOutInMsec,callback) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __INapSystemHealthValidator_INTERFACE_DEFINED__ */ #ifndef __AsyncINapSystemHealthValidator_INTERFACE_DEFINED__ #define __AsyncINapSystemHealthValidator_INTERFACE_DEFINED__ /* interface AsyncINapSystemHealthValidator */ /* [uuid][unique][object] */ EXTERN_C const IID IID_AsyncINapSystemHealthValidator; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2516031A-A391-454d-B53D-C5DC84C7F2DB") AsyncINapSystemHealthValidator : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Begin_Validate( /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ UINT32 hintTimeOutInMsec, /* [in] */ __RPC__in_opt INapServerCallback *callback) = 0; virtual HRESULT STDMETHODCALLTYPE Finish_Validate( void) = 0; }; #else /* C style interface */ typedef struct AsyncINapSystemHealthValidatorVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in AsyncINapSystemHealthValidator * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in AsyncINapSystemHealthValidator * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in AsyncINapSystemHealthValidator * This); HRESULT ( STDMETHODCALLTYPE *Begin_Validate )( __RPC__in AsyncINapSystemHealthValidator * This, /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ UINT32 hintTimeOutInMsec, /* [in] */ __RPC__in_opt INapServerCallback *callback); HRESULT ( STDMETHODCALLTYPE *Finish_Validate )( __RPC__in AsyncINapSystemHealthValidator * This); END_INTERFACE } AsyncINapSystemHealthValidatorVtbl; interface AsyncINapSystemHealthValidator { CONST_VTBL struct AsyncINapSystemHealthValidatorVtbl *lpVtbl; }; #ifdef COBJMACROS #define AsyncINapSystemHealthValidator_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define AsyncINapSystemHealthValidator_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define AsyncINapSystemHealthValidator_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define AsyncINapSystemHealthValidator_Begin_Validate(This,request,hintTimeOutInMsec,callback) \ ( (This)->lpVtbl -> Begin_Validate(This,request,hintTimeOutInMsec,callback) ) #define AsyncINapSystemHealthValidator_Finish_Validate(This) \ ( (This)->lpVtbl -> Finish_Validate(This) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __AsyncINapSystemHealthValidator_INTERFACE_DEFINED__ */ #ifndef __INapServerCallback_INTERFACE_DEFINED__ #define __INapServerCallback_INTERFACE_DEFINED__ /* interface INapServerCallback */ /* [unique][uuid][object] */ EXTERN_C const IID IID_INapServerCallback; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("09C20568-F30C-489b-AE9C-4930AD7F165F") INapServerCallback : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnComplete( /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ HRESULT errorCode) = 0; }; #else /* C style interface */ typedef struct INapServerCallbackVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in INapServerCallback * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in INapServerCallback * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in INapServerCallback * This); HRESULT ( STDMETHODCALLTYPE *OnComplete )( __RPC__in INapServerCallback * This, /* [in] */ __RPC__in_opt INapSystemHealthValidationRequest *request, /* [in] */ HRESULT errorCode); END_INTERFACE } INapServerCallbackVtbl; interface INapServerCallback { CONST_VTBL struct INapServerCallbackVtbl *lpVtbl; }; #ifdef COBJMACROS #define INapServerCallback_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define INapServerCallback_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define INapServerCallback_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define INapServerCallback_OnComplete(This,request,errorCode) \ ( (This)->lpVtbl -> OnComplete(This,request,errorCode) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __INapServerCallback_INTERFACE_DEFINED__ */ #ifndef __INapSystemHealthValidationRequest_INTERFACE_DEFINED__ #define __INapSystemHealthValidationRequest_INTERFACE_DEFINED__ /* interface INapSystemHealthValidationRequest */ /* [unique][uuid][object] */ EXTERN_C const IID IID_INapSystemHealthValidationRequest; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("ADACB3A0-D4F4-4f17-8933-51D60FCCA606") INapSystemHealthValidationRequest : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE GetCorrelationId( /* [out] */ __RPC__out CorrelationId *correlationId) = 0; virtual HRESULT STDMETHODCALLTYPE GetStringCorrelationId( /* [out] */ __RPC__deref_out_opt StringCorrelationId **correlationId) = 0; virtual HRESULT STDMETHODCALLTYPE GetMachineName( /* [out] */ __RPC__deref_out_opt CountedString **machineName) = 0; virtual HRESULT STDMETHODCALLTYPE GetSoHRequest( /* [out] */ __RPC__deref_out_opt SoHRequest **sohRequest, /* [out] */ __RPC__out BOOL *napSystemGenerated) = 0; virtual HRESULT STDMETHODCALLTYPE SetSoHResponse( /* [in] */ __RPC__in const SoHResponse *sohResponse) = 0; virtual HRESULT STDMETHODCALLTYPE GetSoHResponse( /* [out] */ __RPC__deref_out_opt SoHResponse **sohResponse) = 0; virtual HRESULT STDMETHODCALLTYPE SetPrivateData( /* [in] */ __RPC__in const PrivateData *privateData) = 0; virtual HRESULT STDMETHODCALLTYPE GetPrivateData( /* [out] */ __RPC__deref_out_opt PrivateData **privateData) = 0; }; #else /* C style interface */ typedef struct INapSystemHealthValidationRequestVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in INapSystemHealthValidationRequest * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in INapSystemHealthValidationRequest * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in INapSystemHealthValidationRequest * This); HRESULT ( STDMETHODCALLTYPE *GetCorrelationId )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__out CorrelationId *correlationId); HRESULT ( STDMETHODCALLTYPE *GetStringCorrelationId )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__deref_out_opt StringCorrelationId **correlationId); HRESULT ( STDMETHODCALLTYPE *GetMachineName )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__deref_out_opt CountedString **machineName); HRESULT ( STDMETHODCALLTYPE *GetSoHRequest )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__deref_out_opt SoHRequest **sohRequest, /* [out] */ __RPC__out BOOL *napSystemGenerated); HRESULT ( STDMETHODCALLTYPE *SetSoHResponse )( __RPC__in INapSystemHealthValidationRequest * This, /* [in] */ __RPC__in const SoHResponse *sohResponse); HRESULT ( STDMETHODCALLTYPE *GetSoHResponse )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__deref_out_opt SoHResponse **sohResponse); HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( __RPC__in INapSystemHealthValidationRequest * This, /* [in] */ __RPC__in const PrivateData *privateData); HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( __RPC__in INapSystemHealthValidationRequest * This, /* [out] */ __RPC__deref_out_opt PrivateData **privateData); END_INTERFACE } INapSystemHealthValidationRequestVtbl; interface INapSystemHealthValidationRequest { CONST_VTBL struct INapSystemHealthValidationRequestVtbl *lpVtbl; }; #ifdef COBJMACROS #define INapSystemHealthValidationRequest_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define INapSystemHealthValidationRequest_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define INapSystemHealthValidationRequest_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define INapSystemHealthValidationRequest_GetCorrelationId(This,correlationId) \ ( (This)->lpVtbl -> GetCorrelationId(This,correlationId) ) #define INapSystemHealthValidationRequest_GetStringCorrelationId(This,correlationId) \ ( (This)->lpVtbl -> GetStringCorrelationId(This,correlationId) ) #define INapSystemHealthValidationRequest_GetMachineName(This,machineName) \ ( (This)->lpVtbl -> GetMachineName(This,machineName) ) #define INapSystemHealthValidationRequest_GetSoHRequest(This,sohRequest,napSystemGenerated) \ ( (This)->lpVtbl -> GetSoHRequest(This,sohRequest,napSystemGenerated) ) #define INapSystemHealthValidationRequest_SetSoHResponse(This,sohResponse) \ ( (This)->lpVtbl -> SetSoHResponse(This,sohResponse) ) #define INapSystemHealthValidationRequest_GetSoHResponse(This,sohResponse) \ ( (This)->lpVtbl -> GetSoHResponse(This,sohResponse) ) #define INapSystemHealthValidationRequest_SetPrivateData(This,privateData) \ ( (This)->lpVtbl -> SetPrivateData(This,privateData) ) #define INapSystemHealthValidationRequest_GetPrivateData(This,privateData) \ ( (This)->lpVtbl -> GetPrivateData(This,privateData) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __INapSystemHealthValidationRequest_INTERFACE_DEFINED__ */ #ifndef __INapSystemHealthValidationRequest2_INTERFACE_DEFINED__ #define __INapSystemHealthValidationRequest2_INTERFACE_DEFINED__ /* interface INapSystemHealthValidationRequest2 */ /* [unique][uuid][object] */ EXTERN_C const IID IID_INapSystemHealthValidationRequest2; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("91A5D706-0CB4-4a84-8315-9380D453E385") INapSystemHealthValidationRequest2 : public INapSystemHealthValidationRequest { public: virtual HRESULT STDMETHODCALLTYPE GetConfigID( /* [out] */ __RPC__out UINT32 *configID) = 0; }; #else /* C style interface */ typedef struct INapSystemHealthValidationRequest2Vtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [in] */ __RPC__in REFIID riid, /* [annotation][iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( __RPC__in INapSystemHealthValidationRequest2 * This); ULONG ( STDMETHODCALLTYPE *Release )( __RPC__in INapSystemHealthValidationRequest2 * This); HRESULT ( STDMETHODCALLTYPE *GetCorrelationId )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__out CorrelationId *correlationId); HRESULT ( STDMETHODCALLTYPE *GetStringCorrelationId )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__deref_out_opt StringCorrelationId **correlationId); HRESULT ( STDMETHODCALLTYPE *GetMachineName )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__deref_out_opt CountedString **machineName); HRESULT ( STDMETHODCALLTYPE *GetSoHRequest )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__deref_out_opt SoHRequest **sohRequest, /* [out] */ __RPC__out BOOL *napSystemGenerated); HRESULT ( STDMETHODCALLTYPE *SetSoHResponse )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [in] */ __RPC__in const SoHResponse *sohResponse); HRESULT ( STDMETHODCALLTYPE *GetSoHResponse )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__deref_out_opt SoHResponse **sohResponse); HRESULT ( STDMETHODCALLTYPE *SetPrivateData )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [in] */ __RPC__in const PrivateData *privateData); HRESULT ( STDMETHODCALLTYPE *GetPrivateData )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__deref_out_opt PrivateData **privateData); HRESULT ( STDMETHODCALLTYPE *GetConfigID )( __RPC__in INapSystemHealthValidationRequest2 * This, /* [out] */ __RPC__out UINT32 *configID); END_INTERFACE } INapSystemHealthValidationRequest2Vtbl; interface INapSystemHealthValidationRequest2 { CONST_VTBL struct INapSystemHealthValidationRequest2Vtbl *lpVtbl; }; #ifdef COBJMACROS #define INapSystemHealthValidationRequest2_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define INapSystemHealthValidationRequest2_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define INapSystemHealthValidationRequest2_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define INapSystemHealthValidationRequest2_GetCorrelationId(This,correlationId) \ ( (This)->lpVtbl -> GetCorrelationId(This,correlationId) ) #define INapSystemHealthValidationRequest2_GetStringCorrelationId(This,correlationId) \ ( (This)->lpVtbl -> GetStringCorrelationId(This,correlationId) ) #define INapSystemHealthValidationRequest2_GetMachineName(This,machineName) \ ( (This)->lpVtbl -> GetMachineName(This,machineName) ) #define INapSystemHealthValidationRequest2_GetSoHRequest(This,sohRequest,napSystemGenerated) \ ( (This)->lpVtbl -> GetSoHRequest(This,sohRequest,napSystemGenerated) ) #define INapSystemHealthValidationRequest2_SetSoHResponse(This,sohResponse) \ ( (This)->lpVtbl -> SetSoHResponse(This,sohResponse) ) #define INapSystemHealthValidationRequest2_GetSoHResponse(This,sohResponse) \ ( (This)->lpVtbl -> GetSoHResponse(This,sohResponse) ) #define INapSystemHealthValidationRequest2_SetPrivateData(This,privateData) \ ( (This)->lpVtbl -> SetPrivateData(This,privateData) ) #define INapSystemHealthValidationRequest2_GetPrivateData(This,privateData) \ ( (This)->lpVtbl -> GetPrivateData(This,privateData) ) #define INapSystemHealthValidationRequest2_GetConfigID(This,configID) \ ( (This)->lpVtbl -> GetConfigID(This,configID) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __INapSystemHealthValidationRequest2_INTERFACE_DEFINED__ */ /* Additional Prototypes for ALL interfaces */ /* end of Additional Prototypes */ #ifdef __cplusplus } #endif #endif