Asptlb.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:136k
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IResponse_Write_Proxy(
- IResponse __RPC_FAR * This,
- /* [in] */ VARIANT varText);
- void __RPC_STUB IResponse_Write_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [hidden] */ HRESULT STDMETHODCALLTYPE IResponse_WriteBlock_Proxy(
- IResponse __RPC_FAR * This,
- /* [in] */ short iBlockNumber);
- void __RPC_STUB IResponse_WriteBlock_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IResponse_IsClientConnected_Proxy(
- IResponse __RPC_FAR * This,
- /* [retval][out] */ VARIANT_BOOL __RPC_FAR *pfIsClientConnected);
- void __RPC_STUB IResponse_IsClientConnected_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IResponse_get_CharSet_Proxy(
- IResponse __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrCharSetRet);
- void __RPC_STUB IResponse_get_CharSet_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE IResponse_put_CharSet_Proxy(
- IResponse __RPC_FAR * This,
- /* [in] */ BSTR bstrCharSet);
- void __RPC_STUB IResponse_put_CharSet_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IResponse_Pics_Proxy(
- IResponse __RPC_FAR * This,
- /* [in] */ BSTR bstrHeaderValue);
- void __RPC_STUB IResponse_Pics_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IResponse_get_CacheControl_Proxy(
- IResponse __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrCacheControl);
- void __RPC_STUB IResponse_get_CacheControl_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE IResponse_put_CacheControl_Proxy(
- IResponse __RPC_FAR * This,
- /* [in] */ BSTR bstrCacheControl);
- void __RPC_STUB IResponse_put_CacheControl_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IResponse_INTERFACE_DEFINED__ */
- DEFINE_GUID(CLSID_Response,0x46E19BA0,0x25DD,0x11D0,0xA5,0x5F,0x00,0xA0,0xC9,0x0C,0x20,0x91);
- #ifdef __cplusplus
- class DECLSPEC_UUID("46E19BA0-25DD-11D0-A55F-00A0C90C2091")
- Response;
- #endif
- #ifndef __IVariantDictionary_INTERFACE_DEFINED__
- #define __IVariantDictionary_INTERFACE_DEFINED__
- /* interface IVariantDictionary */
- /* [object][hidden][dual][oleautomation][helpstring][uuid] */
- DEFINE_GUID(IID_IVariantDictionary,0x4a7deb90,0xb069,0x11d0,0xb3,0x73,0x00,0xa0,0xc9,0x0c,0x2b,0xd8);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("4a7deb90-b069-11d0-b373-00a0c90c2bd8")
- IVariantDictionary : public IDispatch
- {
- public:
- virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_Item(
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar) = 0;
-
- virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Item(
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [propputref][id] */ HRESULT STDMETHODCALLTYPE putref_Item(
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Key(
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Count(
- /* [retval][out] */ int __RPC_FAR *cStrRet) = 0;
-
- virtual /* [restricted][id][propget] */ HRESULT STDMETHODCALLTYPE get__NewEnum(
- /* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *ppEnumReturn) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Remove(
- /* [in] */ VARIANT VarKey) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE RemoveAll( void) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct IVariantDictionaryVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IVariantDictionary __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IVariantDictionary __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- IVariantDictionary __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [id][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Item )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
-
- /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_Item )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var);
-
- /* [propputref][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *putref_Item )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var);
-
- /* [propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Key )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Count )(
- IVariantDictionary __RPC_FAR * This,
- /* [retval][out] */ int __RPC_FAR *cStrRet);
-
- /* [restricted][id][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get__NewEnum )(
- IVariantDictionary __RPC_FAR * This,
- /* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *ppEnumReturn);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Remove )(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *RemoveAll )(
- IVariantDictionary __RPC_FAR * This);
-
- END_INTERFACE
- } IVariantDictionaryVtbl;
- interface IVariantDictionary
- {
- CONST_VTBL struct IVariantDictionaryVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define IVariantDictionary_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define IVariantDictionary_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define IVariantDictionary_Release(This)
- (This)->lpVtbl -> Release(This)
- #define IVariantDictionary_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define IVariantDictionary_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define IVariantDictionary_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define IVariantDictionary_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define IVariantDictionary_get_Item(This,VarKey,pvar)
- (This)->lpVtbl -> get_Item(This,VarKey,pvar)
- #define IVariantDictionary_put_Item(This,VarKey,var)
- (This)->lpVtbl -> put_Item(This,VarKey,var)
- #define IVariantDictionary_putref_Item(This,VarKey,var)
- (This)->lpVtbl -> putref_Item(This,VarKey,var)
- #define IVariantDictionary_get_Key(This,VarKey,pvar)
- (This)->lpVtbl -> get_Key(This,VarKey,pvar)
- #define IVariantDictionary_get_Count(This,cStrRet)
- (This)->lpVtbl -> get_Count(This,cStrRet)
- #define IVariantDictionary_get__NewEnum(This,ppEnumReturn)
- (This)->lpVtbl -> get__NewEnum(This,ppEnumReturn)
- #define IVariantDictionary_Remove(This,VarKey)
- (This)->lpVtbl -> Remove(This,VarKey)
- #define IVariantDictionary_RemoveAll(This)
- (This)->lpVtbl -> RemoveAll(This)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [id][propget] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_get_Item_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
- void __RPC_STUB IVariantDictionary_get_Item_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput][id] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_put_Item_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var);
- void __RPC_STUB IVariantDictionary_put_Item_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propputref][id] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_putref_Item_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [in] */ VARIANT var);
- void __RPC_STUB IVariantDictionary_putref_Item_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propget] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_get_Key_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
- void __RPC_STUB IVariantDictionary_get_Key_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_get_Count_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [retval][out] */ int __RPC_FAR *cStrRet);
- void __RPC_STUB IVariantDictionary_get_Count_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [restricted][id][propget] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_get__NewEnum_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *ppEnumReturn);
- void __RPC_STUB IVariantDictionary_get__NewEnum_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_Remove_Proxy(
- IVariantDictionary __RPC_FAR * This,
- /* [in] */ VARIANT VarKey);
- void __RPC_STUB IVariantDictionary_Remove_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IVariantDictionary_RemoveAll_Proxy(
- IVariantDictionary __RPC_FAR * This);
- void __RPC_STUB IVariantDictionary_RemoveAll_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IVariantDictionary_INTERFACE_DEFINED__ */
- #ifndef __ISessionObject_INTERFACE_DEFINED__
- #define __ISessionObject_INTERFACE_DEFINED__
- /* interface ISessionObject */
- /* [object][hidden][oleautomation][dual][uuid] */
- DEFINE_GUID(IID_ISessionObject,0xD97A6DA0,0xA865,0x11cf,0x83,0xAF,0x00,0xA0,0xC9,0x0C,0x2B,0xD8);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("D97A6DA0-A865-11cf-83AF-00A0C90C2BD8")
- ISessionObject : public IDispatch
- {
- public:
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_SessionID(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrRet) = 0;
-
- virtual /* [propget][id] */ HRESULT STDMETHODCALLTYPE get_Value(
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar) = 0;
-
- virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Value(
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [propputref][id] */ HRESULT STDMETHODCALLTYPE putref_Value(
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Timeout(
- /* [retval][out] */ long __RPC_FAR *plvar) = 0;
-
- virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_Timeout(
- /* [in] */ long lvar) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Abandon( void) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_CodePage(
- /* [retval][out] */ long __RPC_FAR *plvar) = 0;
-
- virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_CodePage(
- /* [in] */ long lvar) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_LCID(
- /* [retval][out] */ long __RPC_FAR *plvar) = 0;
-
- virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_LCID(
- /* [in] */ long lvar) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_StaticObjects(
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppTaggedObjects) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Contents(
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct ISessionObjectVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- ISessionObject __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- ISessionObject __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- ISessionObject __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_SessionID )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrRet);
-
- /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Value )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
-
- /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_Value )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
-
- /* [propputref][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *putref_Value )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Timeout )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
-
- /* [propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_Timeout )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Abandon )(
- ISessionObject __RPC_FAR * This);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_CodePage )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
-
- /* [propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_CodePage )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_LCID )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
-
- /* [propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_LCID )(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_StaticObjects )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppTaggedObjects);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Contents )(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
-
- END_INTERFACE
- } ISessionObjectVtbl;
- interface ISessionObject
- {
- CONST_VTBL struct ISessionObjectVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define ISessionObject_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define ISessionObject_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define ISessionObject_Release(This)
- (This)->lpVtbl -> Release(This)
- #define ISessionObject_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define ISessionObject_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define ISessionObject_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define ISessionObject_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define ISessionObject_get_SessionID(This,pbstrRet)
- (This)->lpVtbl -> get_SessionID(This,pbstrRet)
- #define ISessionObject_get_Value(This,bstrValue,pvar)
- (This)->lpVtbl -> get_Value(This,bstrValue,pvar)
- #define ISessionObject_put_Value(This,bstrValue,var)
- (This)->lpVtbl -> put_Value(This,bstrValue,var)
- #define ISessionObject_putref_Value(This,bstrValue,var)
- (This)->lpVtbl -> putref_Value(This,bstrValue,var)
- #define ISessionObject_get_Timeout(This,plvar)
- (This)->lpVtbl -> get_Timeout(This,plvar)
- #define ISessionObject_put_Timeout(This,lvar)
- (This)->lpVtbl -> put_Timeout(This,lvar)
- #define ISessionObject_Abandon(This)
- (This)->lpVtbl -> Abandon(This)
- #define ISessionObject_get_CodePage(This,plvar)
- (This)->lpVtbl -> get_CodePage(This,plvar)
- #define ISessionObject_put_CodePage(This,lvar)
- (This)->lpVtbl -> put_CodePage(This,lvar)
- #define ISessionObject_get_LCID(This,plvar)
- (This)->lpVtbl -> get_LCID(This,plvar)
- #define ISessionObject_put_LCID(This,lvar)
- (This)->lpVtbl -> put_LCID(This,lvar)
- #define ISessionObject_get_StaticObjects(This,ppTaggedObjects)
- (This)->lpVtbl -> get_StaticObjects(This,ppTaggedObjects)
- #define ISessionObject_get_Contents(This,ppProperties)
- (This)->lpVtbl -> get_Contents(This,ppProperties)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_SessionID_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrRet);
- void __RPC_STUB ISessionObject_get_SessionID_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propget][id] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_Value_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
- void __RPC_STUB ISessionObject_get_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput][id] */ HRESULT STDMETHODCALLTYPE ISessionObject_put_Value_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
- void __RPC_STUB ISessionObject_put_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propputref][id] */ HRESULT STDMETHODCALLTYPE ISessionObject_putref_Value_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
- void __RPC_STUB ISessionObject_putref_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_Timeout_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
- void __RPC_STUB ISessionObject_get_Timeout_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE ISessionObject_put_Timeout_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
- void __RPC_STUB ISessionObject_put_Timeout_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE ISessionObject_Abandon_Proxy(
- ISessionObject __RPC_FAR * This);
- void __RPC_STUB ISessionObject_Abandon_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_CodePage_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
- void __RPC_STUB ISessionObject_get_CodePage_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE ISessionObject_put_CodePage_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
- void __RPC_STUB ISessionObject_put_CodePage_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_LCID_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plvar);
- void __RPC_STUB ISessionObject_get_LCID_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE ISessionObject_put_LCID_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [in] */ long lvar);
- void __RPC_STUB ISessionObject_put_LCID_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_StaticObjects_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppTaggedObjects);
- void __RPC_STUB ISessionObject_get_StaticObjects_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE ISessionObject_get_Contents_Proxy(
- ISessionObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
- void __RPC_STUB ISessionObject_get_Contents_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __ISessionObject_INTERFACE_DEFINED__ */
- DEFINE_GUID(CLSID_Session,0x509F8F20,0x25DE,0x11D0,0xA5,0x5F,0x00,0xA0,0xC9,0x0C,0x20,0x91);
- #ifdef __cplusplus
- class DECLSPEC_UUID("509F8F20-25DE-11D0-A55F-00A0C90C2091")
- Session;
- #endif
- #ifndef __IApplicationObject_INTERFACE_DEFINED__
- #define __IApplicationObject_INTERFACE_DEFINED__
- /* interface IApplicationObject */
- /* [object][hidden][dual][oleautomation][uuid] */
- DEFINE_GUID(IID_IApplicationObject,0xD97A6DA0,0xA866,0x11cf,0x83,0xAE,0x10,0xA0,0xC9,0x0C,0x2B,0xD8);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("D97A6DA0-A866-11cf-83AE-10A0C90C2BD8")
- IApplicationObject : public IDispatch
- {
- public:
- virtual /* [propget][id] */ HRESULT STDMETHODCALLTYPE get_Value(
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar) = 0;
-
- virtual /* [propput][id] */ HRESULT STDMETHODCALLTYPE put_Value(
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [propputref][id] */ HRESULT STDMETHODCALLTYPE putref_Value(
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Lock( void) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE UnLock( void) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_StaticObjects(
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Contents(
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct IApplicationObjectVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IApplicationObject __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IApplicationObject __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- IApplicationObject __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Value )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
-
- /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_Value )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
-
- /* [propputref][id] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *putref_Value )(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Lock )(
- IApplicationObject __RPC_FAR * This);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *UnLock )(
- IApplicationObject __RPC_FAR * This);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_StaticObjects )(
- IApplicationObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Contents )(
- IApplicationObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
-
- END_INTERFACE
- } IApplicationObjectVtbl;
- interface IApplicationObject
- {
- CONST_VTBL struct IApplicationObjectVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define IApplicationObject_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define IApplicationObject_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define IApplicationObject_Release(This)
- (This)->lpVtbl -> Release(This)
- #define IApplicationObject_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define IApplicationObject_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define IApplicationObject_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define IApplicationObject_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define IApplicationObject_get_Value(This,bstrValue,pvar)
- (This)->lpVtbl -> get_Value(This,bstrValue,pvar)
- #define IApplicationObject_put_Value(This,bstrValue,var)
- (This)->lpVtbl -> put_Value(This,bstrValue,var)
- #define IApplicationObject_putref_Value(This,bstrValue,var)
- (This)->lpVtbl -> putref_Value(This,bstrValue,var)
- #define IApplicationObject_Lock(This)
- (This)->lpVtbl -> Lock(This)
- #define IApplicationObject_UnLock(This)
- (This)->lpVtbl -> UnLock(This)
- #define IApplicationObject_get_StaticObjects(This,ppProperties)
- (This)->lpVtbl -> get_StaticObjects(This,ppProperties)
- #define IApplicationObject_get_Contents(This,ppProperties)
- (This)->lpVtbl -> get_Contents(This,ppProperties)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [propget][id] */ HRESULT STDMETHODCALLTYPE IApplicationObject_get_Value_Proxy(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [retval][out] */ VARIANT __RPC_FAR *pvar);
- void __RPC_STUB IApplicationObject_get_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput][id] */ HRESULT STDMETHODCALLTYPE IApplicationObject_put_Value_Proxy(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
- void __RPC_STUB IApplicationObject_put_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propputref][id] */ HRESULT STDMETHODCALLTYPE IApplicationObject_putref_Value_Proxy(
- IApplicationObject __RPC_FAR * This,
- /* [in] */ BSTR bstrValue,
- /* [in] */ VARIANT var);
- void __RPC_STUB IApplicationObject_putref_Value_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IApplicationObject_Lock_Proxy(
- IApplicationObject __RPC_FAR * This);
- void __RPC_STUB IApplicationObject_Lock_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IApplicationObject_UnLock_Proxy(
- IApplicationObject __RPC_FAR * This);
- void __RPC_STUB IApplicationObject_UnLock_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IApplicationObject_get_StaticObjects_Proxy(
- IApplicationObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
- void __RPC_STUB IApplicationObject_get_StaticObjects_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IApplicationObject_get_Contents_Proxy(
- IApplicationObject __RPC_FAR * This,
- /* [retval][out] */ IVariantDictionary __RPC_FAR *__RPC_FAR *ppProperties);
- void __RPC_STUB IApplicationObject_get_Contents_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IApplicationObject_INTERFACE_DEFINED__ */
- DEFINE_GUID(CLSID_Application,0x7C3BAF00,0x25DE,0x11D0,0xA5,0x5F,0x00,0xA0,0xC9,0x0C,0x20,0x91);
- #ifdef __cplusplus
- class DECLSPEC_UUID("7C3BAF00-25DE-11D0-A55F-00A0C90C2091")
- Application;
- #endif
- #ifndef __IASPError_INTERFACE_DEFINED__
- #define __IASPError_INTERFACE_DEFINED__
- /* interface IASPError */
- /* [object][hidden][dual][oleautomation][helpstring][uuid] */
- DEFINE_GUID(IID_IASPError,0xF5A6893E,0xA0F5,0x11d1,0x8C,0x4B,0x00,0xC0,0x4F,0xC3,0x24,0xA4);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("F5A6893E-A0F5-11d1-8C4B-00C04FC324A4")
- IASPError : public IDispatch
- {
- public:
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_ASPCode(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrASPCode) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Number(
- /* [retval][out] */ long __RPC_FAR *plNumber) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Category(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrSource) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_File(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrFileName) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Line(
- /* [retval][out] */ long __RPC_FAR *plLineNumber) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Description(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_ASPDescription(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Column(
- /* [retval][out] */ long __RPC_FAR *plColumn) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Source(
- /* [retval][out] */ BSTR __RPC_FAR *pbstrLineText) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct IASPErrorVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IASPError __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IASPError __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IASPError __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- IASPError __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- IASPError __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- IASPError __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- IASPError __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_ASPCode )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrASPCode);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Number )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plNumber);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Category )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrSource);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_File )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrFileName);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Line )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plLineNumber);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Description )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_ASPDescription )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Column )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plColumn);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Source )(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrLineText);
-
- END_INTERFACE
- } IASPErrorVtbl;
- interface IASPError
- {
- CONST_VTBL struct IASPErrorVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define IASPError_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define IASPError_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define IASPError_Release(This)
- (This)->lpVtbl -> Release(This)
- #define IASPError_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define IASPError_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define IASPError_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define IASPError_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define IASPError_get_ASPCode(This,pbstrASPCode)
- (This)->lpVtbl -> get_ASPCode(This,pbstrASPCode)
- #define IASPError_get_Number(This,plNumber)
- (This)->lpVtbl -> get_Number(This,plNumber)
- #define IASPError_get_Category(This,pbstrSource)
- (This)->lpVtbl -> get_Category(This,pbstrSource)
- #define IASPError_get_File(This,pbstrFileName)
- (This)->lpVtbl -> get_File(This,pbstrFileName)
- #define IASPError_get_Line(This,plLineNumber)
- (This)->lpVtbl -> get_Line(This,plLineNumber)
- #define IASPError_get_Description(This,pbstrDescription)
- (This)->lpVtbl -> get_Description(This,pbstrDescription)
- #define IASPError_get_ASPDescription(This,pbstrDescription)
- (This)->lpVtbl -> get_ASPDescription(This,pbstrDescription)
- #define IASPError_get_Column(This,plColumn)
- (This)->lpVtbl -> get_Column(This,plColumn)
- #define IASPError_get_Source(This,pbstrLineText)
- (This)->lpVtbl -> get_Source(This,pbstrLineText)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_ASPCode_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrASPCode);
- void __RPC_STUB IASPError_get_ASPCode_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Number_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plNumber);
- void __RPC_STUB IASPError_get_Number_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Category_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrSource);
- void __RPC_STUB IASPError_get_Category_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_File_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrFileName);
- void __RPC_STUB IASPError_get_File_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Line_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plLineNumber);
- void __RPC_STUB IASPError_get_Line_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Description_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription);
- void __RPC_STUB IASPError_get_Description_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_ASPDescription_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrDescription);
- void __RPC_STUB IASPError_get_ASPDescription_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Column_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plColumn);
- void __RPC_STUB IASPError_get_Column_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IASPError_get_Source_Proxy(
- IASPError __RPC_FAR * This,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrLineText);
- void __RPC_STUB IASPError_get_Source_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IASPError_INTERFACE_DEFINED__ */
- #ifndef __IServer_INTERFACE_DEFINED__
- #define __IServer_INTERFACE_DEFINED__
- /* interface IServer */
- /* [object][hidden][dual][oleautomation][uuid] */
- DEFINE_GUID(IID_IServer,0xD97A6DA0,0xA867,0x11cf,0x83,0xAE,0x01,0xA0,0xC9,0x0C,0x2B,0xD8);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("D97A6DA0-A867-11cf-83AE-01A0C90C2BD8")
- IServer : public IDispatch
- {
- public:
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_ScriptTimeout(
- /* [retval][out] */ long __RPC_FAR *plTimeoutSeconds) = 0;
-
- virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_ScriptTimeout(
- /* [in] */ long lTimeoutSeconds) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE CreateObject(
- /* [in] */ BSTR bstrProgID,
- /* [retval][out] */ IDispatch __RPC_FAR *__RPC_FAR *ppDispObject) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE HTMLEncode(
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE MapPath(
- /* [in] */ BSTR bstrLogicalPath,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrPhysicalPath) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE URLEncode(
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded) = 0;
-
- virtual /* [hidden] */ HRESULT STDMETHODCALLTYPE URLPathEncode(
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Execute(
- /* [in] */ BSTR bstrLogicalPath) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE Transfer(
- /* [in] */ BSTR bstrLogicalPath) = 0;
-
- virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE GetLastError(
- /* [retval][out] */ IASPError __RPC_FAR *__RPC_FAR *ppASPErrorObject) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct IServerVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IServer __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IServer __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IServer __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- IServer __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- IServer __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- IServer __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- IServer __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_ScriptTimeout )(
- IServer __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plTimeoutSeconds);
-
- /* [propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_ScriptTimeout )(
- IServer __RPC_FAR * This,
- /* [in] */ long lTimeoutSeconds);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *CreateObject )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrProgID,
- /* [retval][out] */ IDispatch __RPC_FAR *__RPC_FAR *ppDispObject);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *HTMLEncode )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *MapPath )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrPhysicalPath);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *URLEncode )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
-
- /* [hidden] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *URLPathEncode )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Execute )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Transfer )(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath);
-
- /* [helpstring] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetLastError )(
- IServer __RPC_FAR * This,
- /* [retval][out] */ IASPError __RPC_FAR *__RPC_FAR *ppASPErrorObject);
-
- END_INTERFACE
- } IServerVtbl;
- interface IServer
- {
- CONST_VTBL struct IServerVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define IServer_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define IServer_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define IServer_Release(This)
- (This)->lpVtbl -> Release(This)
- #define IServer_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define IServer_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define IServer_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define IServer_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define IServer_get_ScriptTimeout(This,plTimeoutSeconds)
- (This)->lpVtbl -> get_ScriptTimeout(This,plTimeoutSeconds)
- #define IServer_put_ScriptTimeout(This,lTimeoutSeconds)
- (This)->lpVtbl -> put_ScriptTimeout(This,lTimeoutSeconds)
- #define IServer_CreateObject(This,bstrProgID,ppDispObject)
- (This)->lpVtbl -> CreateObject(This,bstrProgID,ppDispObject)
- #define IServer_HTMLEncode(This,bstrIn,pbstrEncoded)
- (This)->lpVtbl -> HTMLEncode(This,bstrIn,pbstrEncoded)
- #define IServer_MapPath(This,bstrLogicalPath,pbstrPhysicalPath)
- (This)->lpVtbl -> MapPath(This,bstrLogicalPath,pbstrPhysicalPath)
- #define IServer_URLEncode(This,bstrIn,pbstrEncoded)
- (This)->lpVtbl -> URLEncode(This,bstrIn,pbstrEncoded)
- #define IServer_URLPathEncode(This,bstrIn,pbstrEncoded)
- (This)->lpVtbl -> URLPathEncode(This,bstrIn,pbstrEncoded)
- #define IServer_Execute(This,bstrLogicalPath)
- (This)->lpVtbl -> Execute(This,bstrLogicalPath)
- #define IServer_Transfer(This,bstrLogicalPath)
- (This)->lpVtbl -> Transfer(This,bstrLogicalPath)
- #define IServer_GetLastError(This,ppASPErrorObject)
- (This)->lpVtbl -> GetLastError(This,ppASPErrorObject)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IServer_get_ScriptTimeout_Proxy(
- IServer __RPC_FAR * This,
- /* [retval][out] */ long __RPC_FAR *plTimeoutSeconds);
- void __RPC_STUB IServer_get_ScriptTimeout_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [propput] */ HRESULT STDMETHODCALLTYPE IServer_put_ScriptTimeout_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ long lTimeoutSeconds);
- void __RPC_STUB IServer_put_ScriptTimeout_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_CreateObject_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrProgID,
- /* [retval][out] */ IDispatch __RPC_FAR *__RPC_FAR *ppDispObject);
- void __RPC_STUB IServer_CreateObject_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_HTMLEncode_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
- void __RPC_STUB IServer_HTMLEncode_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_MapPath_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrPhysicalPath);
- void __RPC_STUB IServer_MapPath_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_URLEncode_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
- void __RPC_STUB IServer_URLEncode_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [hidden] */ HRESULT STDMETHODCALLTYPE IServer_URLPathEncode_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrIn,
- /* [retval][out] */ BSTR __RPC_FAR *pbstrEncoded);
- void __RPC_STUB IServer_URLPathEncode_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_Execute_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath);
- void __RPC_STUB IServer_Execute_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_Transfer_Proxy(
- IServer __RPC_FAR * This,
- /* [in] */ BSTR bstrLogicalPath);
- void __RPC_STUB IServer_Transfer_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring] */ HRESULT STDMETHODCALLTYPE IServer_GetLastError_Proxy(
- IServer __RPC_FAR * This,
- /* [retval][out] */ IASPError __RPC_FAR *__RPC_FAR *ppASPErrorObject);
- void __RPC_STUB IServer_GetLastError_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IServer_INTERFACE_DEFINED__ */
- DEFINE_GUID(CLSID_Server,0xA506D160,0x25E0,0x11D0,0xA5,0x5F,0x00,0xA0,0xC9,0x0C,0x20,0x91);
- #ifdef __cplusplus
- class DECLSPEC_UUID("A506D160-25E0-11D0-A55F-00A0C90C2091")
- Server;
- #endif
- #ifndef __IScriptingContext_INTERFACE_DEFINED__
- #define __IScriptingContext_INTERFACE_DEFINED__
- /* interface IScriptingContext */
- /* [object][hidden][dual][oleautomation][helpstring][uuid] */
- DEFINE_GUID(IID_IScriptingContext,0xD97A6DA0,0xA868,0x11cf,0x83,0xAE,0x00,0xB0,0xC9,0x0C,0x2B,0xD8);
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- MIDL_INTERFACE("D97A6DA0-A868-11cf-83AE-00B0C90C2BD8")
- IScriptingContext : public IDispatch
- {
- public:
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Request(
- /* [retval][out] */ IRequest __RPC_FAR *__RPC_FAR *ppRequest) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Response(
- /* [retval][out] */ IResponse __RPC_FAR *__RPC_FAR *ppResponse) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Server(
- /* [retval][out] */ IServer __RPC_FAR *__RPC_FAR *ppServer) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Session(
- /* [retval][out] */ ISessionObject __RPC_FAR *__RPC_FAR *ppSession) = 0;
-
- virtual /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE get_Application(
- /* [retval][out] */ IApplicationObject __RPC_FAR *__RPC_FAR *ppApplication) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct IScriptingContextVtbl
- {
- BEGIN_INTERFACE
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )(
- IScriptingContext __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )(
- IScriptingContext __RPC_FAR * This);
-
- ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )(
- IScriptingContext __RPC_FAR * This);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfoCount )(
- IScriptingContext __RPC_FAR * This,
- /* [out] */ UINT __RPC_FAR *pctinfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetTypeInfo )(
- IScriptingContext __RPC_FAR * This,
- /* [in] */ UINT iTInfo,
- /* [in] */ LCID lcid,
- /* [out] */ ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
-
- HRESULT ( STDMETHODCALLTYPE __RPC_FAR *GetIDsOfNames )(
- IScriptingContext __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [size_is][in] */ LPOLESTR __RPC_FAR *rgszNames,
- /* [in] */ UINT cNames,
- /* [in] */ LCID lcid,
- /* [size_is][out] */ DISPID __RPC_FAR *rgDispId);
-
- /* [local] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *Invoke )(
- IScriptingContext __RPC_FAR * This,
- /* [in] */ DISPID dispIdMember,
- /* [in] */ REFIID riid,
- /* [in] */ LCID lcid,
- /* [in] */ WORD wFlags,
- /* [out][in] */ DISPPARAMS __RPC_FAR *pDispParams,
- /* [out] */ VARIANT __RPC_FAR *pVarResult,
- /* [out] */ EXCEPINFO __RPC_FAR *pExcepInfo,
- /* [out] */ UINT __RPC_FAR *puArgErr);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Request )(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IRequest __RPC_FAR *__RPC_FAR *ppRequest);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Response )(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IResponse __RPC_FAR *__RPC_FAR *ppResponse);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Server )(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IServer __RPC_FAR *__RPC_FAR *ppServer);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Session )(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ ISessionObject __RPC_FAR *__RPC_FAR *ppSession);
-
- /* [helpstring][propget] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *get_Application )(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IApplicationObject __RPC_FAR *__RPC_FAR *ppApplication);
-
- END_INTERFACE
- } IScriptingContextVtbl;
- interface IScriptingContext
- {
- CONST_VTBL struct IScriptingContextVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define IScriptingContext_QueryInterface(This,riid,ppvObject)
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define IScriptingContext_AddRef(This)
- (This)->lpVtbl -> AddRef(This)
- #define IScriptingContext_Release(This)
- (This)->lpVtbl -> Release(This)
- #define IScriptingContext_GetTypeInfoCount(This,pctinfo)
- (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
- #define IScriptingContext_GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
- #define IScriptingContext_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
- #define IScriptingContext_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
- #define IScriptingContext_get_Request(This,ppRequest)
- (This)->lpVtbl -> get_Request(This,ppRequest)
- #define IScriptingContext_get_Response(This,ppResponse)
- (This)->lpVtbl -> get_Response(This,ppResponse)
- #define IScriptingContext_get_Server(This,ppServer)
- (This)->lpVtbl -> get_Server(This,ppServer)
- #define IScriptingContext_get_Session(This,ppSession)
- (This)->lpVtbl -> get_Session(This,ppSession)
- #define IScriptingContext_get_Application(This,ppApplication)
- (This)->lpVtbl -> get_Application(This,ppApplication)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IScriptingContext_get_Request_Proxy(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IRequest __RPC_FAR *__RPC_FAR *ppRequest);
- void __RPC_STUB IScriptingContext_get_Request_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IScriptingContext_get_Response_Proxy(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IResponse __RPC_FAR *__RPC_FAR *ppResponse);
- void __RPC_STUB IScriptingContext_get_Response_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IScriptingContext_get_Server_Proxy(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IServer __RPC_FAR *__RPC_FAR *ppServer);
- void __RPC_STUB IScriptingContext_get_Server_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IScriptingContext_get_Session_Proxy(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ ISessionObject __RPC_FAR *__RPC_FAR *ppSession);
- void __RPC_STUB IScriptingContext_get_Session_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- /* [helpstring][propget] */ HRESULT STDMETHODCALLTYPE IScriptingContext_get_Application_Proxy(
- IScriptingContext __RPC_FAR * This,
- /* [retval][out] */ IApplicationObject __RPC_FAR *__RPC_FAR *ppApplication);
- void __RPC_STUB IScriptingContext_get_Application_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __IScriptingContext_INTERFACE_DEFINED__ */
- DEFINE_GUID(CLSID_ScriptingContext,0xD97A6DA0,0xA868,0x11cf,0x83,0xAE,0x11,0xB0,0xC9,0x0C,0x2B,0xD8);
- #ifdef __cplusplus
- class DECLSPEC_UUID("D97A6DA0-A868-11cf-83AE-11B0C90C2BD8")
- ScriptingContext;
- #endif
- #endif /* __ASPTypeLibrary_LIBRARY_DEFINED__ */
- /* Additional Prototypes for ALL interfaces */
- /* end of Additional Prototypes */
- #ifdef __cplusplus
- }
- #endif
- #endif