?? simple8.h
字號:
/* this ALWAYS GENERATED file contains the definitions for the interfaces */
/* File created by MIDL compiler version 6.00.0366 */
/* at Mon Sep 01 12:40:23 2008
*/
/* Compiler settings for .\Simple8.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 <rpcndr.h> 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 <rpcndr.h>
#endif // __RPCNDR_H_VERSION__
#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/
#ifndef __Simple8_h__
#define __Simple8_h__
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif
/* Forward Declarations */
#ifndef __IDispSimple_FWD_DEFINED__
#define __IDispSimple_FWD_DEFINED__
typedef interface IDispSimple IDispSimple;
#endif /* __IDispSimple_FWD_DEFINED__ */
#ifndef __DispSimple_FWD_DEFINED__
#define __DispSimple_FWD_DEFINED__
#ifdef __cplusplus
typedef class DispSimple DispSimple;
#else
typedef struct DispSimple DispSimple;
#endif /* __cplusplus */
#endif /* __DispSimple_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 __IDispSimple_INTERFACE_DEFINED__
#define __IDispSimple_INTERFACE_DEFINED__
/* interface IDispSimple */
/* [unique][helpstring][nonextensible][dual][uuid][object] */
EXTERN_C const IID IID_IDispSimple;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("D432BA0B-920F-4C92-BE2D-A4B569F7F21B")
IDispSimple : public IDispatch
{
public:
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE Add(
/* [in] */ VARIANT v1,
/* [in] */ VARIANT v2,
/* [retval][out] */ VARIANT *pVal) = 0;
virtual /* [helpstring][id] */ HRESULT STDMETHODCALLTYPE Upper(
/* [in] */ BSTR str,
/* [retval][out] */ BSTR *pVal) = 0;
};
#else /* C style interface */
typedef struct IDispSimpleVtbl
{
BEGIN_INTERFACE
HRESULT ( STDMETHODCALLTYPE *QueryInterface )(
IDispSimple * This,
/* [in] */ REFIID riid,
/* [iid_is][out] */ void **ppvObject);
ULONG ( STDMETHODCALLTYPE *AddRef )(
IDispSimple * This);
ULONG ( STDMETHODCALLTYPE *Release )(
IDispSimple * This);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )(
IDispSimple * This,
/* [out] */ UINT *pctinfo);
HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )(
IDispSimple * This,
/* [in] */ UINT iTInfo,
/* [in] */ LCID lcid,
/* [out] */ ITypeInfo **ppTInfo);
HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )(
IDispSimple * This,
/* [in] */ REFIID riid,
/* [size_is][in] */ LPOLESTR *rgszNames,
/* [in] */ UINT cNames,
/* [in] */ LCID lcid,
/* [size_is][out] */ DISPID *rgDispId);
/* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )(
IDispSimple * 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 *Add )(
IDispSimple * This,
/* [in] */ VARIANT v1,
/* [in] */ VARIANT v2,
/* [retval][out] */ VARIANT *pVal);
/* [helpstring][id] */ HRESULT ( STDMETHODCALLTYPE *Upper )(
IDispSimple * This,
/* [in] */ BSTR str,
/* [retval][out] */ BSTR *pVal);
END_INTERFACE
} IDispSimpleVtbl;
interface IDispSimple
{
CONST_VTBL struct IDispSimpleVtbl *lpVtbl;
};
#ifdef COBJMACROS
#define IDispSimple_QueryInterface(This,riid,ppvObject) \
(This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
#define IDispSimple_AddRef(This) \
(This)->lpVtbl -> AddRef(This)
#define IDispSimple_Release(This) \
(This)->lpVtbl -> Release(This)
#define IDispSimple_GetTypeInfoCount(This,pctinfo) \
(This)->lpVtbl -> GetTypeInfoCount(This,pctinfo)
#define IDispSimple_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
(This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
#define IDispSimple_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
(This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
#define IDispSimple_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
(This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
#define IDispSimple_Add(This,v1,v2,pVal) \
(This)->lpVtbl -> Add(This,v1,v2,pVal)
#define IDispSimple_Upper(This,str,pVal) \
(This)->lpVtbl -> Upper(This,str,pVal)
#endif /* COBJMACROS */
#endif /* C style interface */
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IDispSimple_Add_Proxy(
IDispSimple * This,
/* [in] */ VARIANT v1,
/* [in] */ VARIANT v2,
/* [retval][out] */ VARIANT *pVal);
void __RPC_STUB IDispSimple_Add_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
/* [helpstring][id] */ HRESULT STDMETHODCALLTYPE IDispSimple_Upper_Proxy(
IDispSimple * This,
/* [in] */ BSTR str,
/* [retval][out] */ BSTR *pVal);
void __RPC_STUB IDispSimple_Upper_Stub(
IRpcStubBuffer *This,
IRpcChannelBuffer *_pRpcChannelBuffer,
PRPC_MESSAGE _pRpcMessage,
DWORD *_pdwStubPhase);
#endif /* __IDispSimple_INTERFACE_DEFINED__ */
#ifndef __Simple8Lib_LIBRARY_DEFINED__
#define __Simple8Lib_LIBRARY_DEFINED__
/* library Simple8Lib */
/* [helpstring][version][uuid] */
EXTERN_C const IID LIBID_Simple8Lib;
EXTERN_C const CLSID CLSID_DispSimple;
#ifdef __cplusplus
class DECLSPEC_UUID("FB529B3B-A07B-40E2-A750-A90CA00326F5")
DispSimple;
#endif
#endif /* __Simple8Lib_LIBRARY_DEFINED__ */
/* Additional Prototypes for ALL interfaces */
unsigned long __RPC_USER BSTR_UserSize( unsigned long *, unsigned long , BSTR * );
unsigned char * __RPC_USER BSTR_UserMarshal( unsigned long *, unsigned char *, BSTR * );
unsigned char * __RPC_USER BSTR_UserUnmarshal(unsigned long *, unsigned char *, BSTR * );
void __RPC_USER BSTR_UserFree( unsigned long *, BSTR * );
unsigned long __RPC_USER VARIANT_UserSize( unsigned long *, unsigned long , VARIANT * );
unsigned char * __RPC_USER VARIANT_UserMarshal( unsigned long *, unsigned char *, VARIANT * );
unsigned char * __RPC_USER VARIANT_UserUnmarshal(unsigned long *, unsigned char *, VARIANT * );
void __RPC_USER VARIANT_UserFree( unsigned long *, VARIANT * );
/* end of Additional Prototypes */
#ifdef __cplusplus
}
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -