/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 6.00.0361 */ /* at Tue Mar 21 00:51:22 2006 */ /* Compiler settings for .\vs_haskell_dlg.idl: Oicf, W1, Zp8, env=Win32 (32b run) 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__ 475 #endif #include "rpc.h" #include "rpcndr.h" #ifndef __RPCNDR_H_VERSION__ #error this stub requires an updated version of #endif // __RPCNDR_H_VERSION__ #ifndef __vs_haskell_dlg_h__ #define __vs_haskell_dlg_h__ #if defined(_MSC_VER) && (_MSC_VER >= 1020) #pragma once #endif /* Forward Declarations */ #ifndef __IPropertyContainer_FWD_DEFINED__ #define __IPropertyContainer_FWD_DEFINED__ typedef interface IPropertyContainer IPropertyContainer; #endif /* __IPropertyContainer_FWD_DEFINED__ */ #ifndef __CCPropertyPage_FWD_DEFINED__ #define __CCPropertyPage_FWD_DEFINED__ #ifdef __cplusplus typedef class CCPropertyPage CCPropertyPage; #else typedef struct CCPropertyPage CCPropertyPage; #endif /* __cplusplus */ #endif /* __CCPropertyPage_FWD_DEFINED__ */ #ifndef __HCPropertyPage_FWD_DEFINED__ #define __HCPropertyPage_FWD_DEFINED__ #ifdef __cplusplus typedef class HCPropertyPage HCPropertyPage; #else typedef struct HCPropertyPage HCPropertyPage; #endif /* __cplusplus */ #endif /* __HCPropertyPage_FWD_DEFINED__ */ #ifndef __LDPropertyPage_FWD_DEFINED__ #define __LDPropertyPage_FWD_DEFINED__ #ifdef __cplusplus typedef class LDPropertyPage LDPropertyPage; #else typedef struct LDPropertyPage LDPropertyPage; #endif /* __cplusplus */ #endif /* __LDPropertyPage_FWD_DEFINED__ */ #ifndef __IAddReferenceDialog_FWD_DEFINED__ #define __IAddReferenceDialog_FWD_DEFINED__ typedef interface IAddReferenceDialog IAddReferenceDialog; #endif /* __IAddReferenceDialog_FWD_DEFINED__ */ #ifndef __AddReferenceDialog_FWD_DEFINED__ #define __AddReferenceDialog_FWD_DEFINED__ #ifdef __cplusplus typedef class AddReferenceDialog AddReferenceDialog; #else typedef struct AddReferenceDialog AddReferenceDialog; #endif /* __cplusplus */ #endif /* __AddReferenceDialog_FWD_DEFINED__ */ /* header files for imported files */ #include "oaidl.h" #include "ocidl.h" #ifdef __cplusplus extern "C"{ #endif void * __RPC_USER MIDL_user_allocate(size_t); void __RPC_USER MIDL_user_free( void * ); #ifndef __vs_haskell_dlg_LIBRARY_DEFINED__ #define __vs_haskell_dlg_LIBRARY_DEFINED__ /* library vs_haskell_dlg */ /* [helpstring][version][uuid] */ EXTERN_C const IID LIBID_vs_haskell_dlg; #ifndef __IPropertyContainer_INTERFACE_DEFINED__ #define __IPropertyContainer_INTERFACE_DEFINED__ /* interface IPropertyContainer */ /* [object][unique][version][uuid] */ EXTERN_C const IID IID_IPropertyContainer; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("D80C7181-5DA8-4f77-91D4-EA71384B516E") IPropertyContainer : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Commit( void) = 0; }; #else /* C style interface */ typedef struct IPropertyContainerVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IPropertyContainer * This, /* [in] */ REFIID riid, /* [iid_is][out] */ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IPropertyContainer * This); ULONG ( STDMETHODCALLTYPE *Release )( IPropertyContainer * This); HRESULT ( STDMETHODCALLTYPE *Commit )( IPropertyContainer * This); END_INTERFACE } IPropertyContainerVtbl; interface IPropertyContainer { CONST_VTBL struct IPropertyContainerVtbl *lpVtbl; }; #ifdef COBJMACROS #define IPropertyContainer_QueryInterface(This,riid,ppvObject) \ (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) #define IPropertyContainer_AddRef(This) \ (This)->lpVtbl -> AddRef(This) #define IPropertyContainer_Release(This) \ (This)->lpVtbl -> Release(This) #define IPropertyContainer_Commit(This) \ (This)->lpVtbl -> Commit(This) #endif /* COBJMACROS */ #endif /* C style interface */ HRESULT STDMETHODCALLTYPE IPropertyContainer_Commit_Proxy( IPropertyContainer * This); void __RPC_STUB IPropertyContainer_Commit_Stub( IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase); #endif /* __IPropertyContainer_INTERFACE_DEFINED__ */ EXTERN_C const CLSID CLSID_CCPropertyPage; #ifdef __cplusplus class DECLSPEC_UUID("1CC6EA13-3D1C-43b2-ABC2-ECF2A8B95C1E") CCPropertyPage; #endif EXTERN_C const CLSID CLSID_HCPropertyPage; #ifdef __cplusplus class DECLSPEC_UUID("ACF763B9-52C8-499f-B2EA-1D590593621F") HCPropertyPage; #endif EXTERN_C const CLSID CLSID_LDPropertyPage; #ifdef __cplusplus class DECLSPEC_UUID("BC4C26BA-9E25-410e-8028-180D941446C0") LDPropertyPage; #endif #ifndef __IAddReferenceDialog_INTERFACE_DEFINED__ #define __IAddReferenceDialog_INTERFACE_DEFINED__ /* interface IAddReferenceDialog */ /* [unique][helpstring][nonextensible][dual][uuid][object] */ EXTERN_C const IID IID_IAddReferenceDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("CAD50FD3-7FB7-44AF-8B24-BF4B6C5E0235") IAddReferenceDialog : public IDispatch { public: virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE OpenDialog( IServiceProvider *provider) = 0; virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE AddPackage( CHAR *name) = 0; virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE GetPackage( /* [out][in] */ PVOID *pos, /* [retval][out] */ CHAR **name) = 0; }; #else /* C style interface */ typedef struct IAddReferenceDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IAddReferenceDialog * This, /* [in] */ REFIID riid, /* [iid_is][out] */ void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IAddReferenceDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( IAddReferenceDialog * This); HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )( IAddReferenceDialog * This, /* [out] */ UINT *pctinfo); HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )( IAddReferenceDialog * This, /* [in] */ UINT iTInfo, /* [in] */ LCID lcid, /* [out] */ ITypeInfo **ppTInfo); HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )( IAddReferenceDialog * This, /* [in] */ REFIID riid, /* [size_is][in] */ LPOLESTR *rgszNames, /* [in] */ UINT cNames, /* [in] */ LCID lcid, /* [size_is][out] */ DISPID *rgDispId); /* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )( IAddReferenceDialog * This, /* [in] */ DISPID dispIdMember, /* [in] */ REFIID riid, /* [in] */ LCID lcid, /* [in] */ WORD wFlags, /* [out][in] */ DISPPARAMS *pDispParams, /* [out] */ VARIANT *pVarResult, /* [out] */ EXCEPINFO *pExcepInfo, /* [out] */ UINT *puArgErr); /* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *OpenDialog )( IAddReferenceDialog * This, IServiceProvider *provider); /* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *AddPackage )( IAddReferenceDialog * This, CHAR *name); /* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *GetPackage )( IAddReferenceDialog * This, /* [out][in] */ PVOID *pos, /* [retval][out] */ CHAR **name); END_INTERFACE } IAddReferenceDialogVtbl; interface IAddReferenceDialog { CONST_VTBL struct IAddReferenceDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IAddReferenceDialog_QueryInterface(This,riid,ppvObject) \ (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) #define IAddReferenceDialog_AddRef(This) \ (This)->lpVtbl -> AddRef(This) #define IAddReferenceDialog_Release(This) \ (This)->lpVtbl -> Release(This) #define IAddReferenceDialog_GetTypeInfoCount(This,pctinfo) \ (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) #define IAddReferenceDialog_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \ (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) #define IAddReferenceDialog_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \ (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) #define IAddReferenceDialog_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \ (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) #define IAddReferenceDialog_OpenDialog(This,provider) \ (This)->lpVtbl -> OpenDialog(This,provider) #define IAddReferenceDialog_AddPackage(This,name) \ (This)->lpVtbl -> AddPackage(This,name) #define IAddReferenceDialog_GetPackage(This,pos,name) \ (This)->lpVtbl -> GetPackage(This,pos,name) #endif /* COBJMACROS */ #endif /* C style interface */ /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IAddReferenceDialog_OpenDialog_Proxy( IAddReferenceDialog * This, IServiceProvider *provider); void __RPC_STUB IAddReferenceDialog_OpenDialog_Stub( IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase); /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IAddReferenceDialog_AddPackage_Proxy( IAddReferenceDialog * This, CHAR *name); void __RPC_STUB IAddReferenceDialog_AddPackage_Stub( IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase); /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IAddReferenceDialog_GetPackage_Proxy( IAddReferenceDialog * This, /* [out][in] */ PVOID *pos, /* [retval][out] */ CHAR **name); void __RPC_STUB IAddReferenceDialog_GetPackage_Stub( IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase); #endif /* __IAddReferenceDialog_INTERFACE_DEFINED__ */ EXTERN_C const CLSID CLSID_AddReferenceDialog; #ifdef __cplusplus class DECLSPEC_UUID("FBE9B3FE-2469-4E1C-AB36-C361D9ACD98E") AddReferenceDialog; #endif #endif /* __vs_haskell_dlg_LIBRARY_DEFINED__ */ /* Additional Prototypes for ALL interfaces */ /* end of Additional Prototypes */ #ifdef __cplusplus } #endif #endif