⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simplepointvc.h

📁 COM编程接口处理方法 多个方法调用COM库函数
💻 H
📖 第 1 页 / 共 2 页
字号:
        
        HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )( 
            ISimplePointDatasetHelper __RPC_FAR * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
        
        ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )( 
            ISimplePointDatasetHelper __RPC_FAR * This);
        
        ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )( 
            ISimplePointDatasetHelper __RPC_FAR * This);
        
        /* [helpstring][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_DatasetName )( 
            ISimplePointDatasetHelper __RPC_FAR * This,
            /* [in] */ BSTR newVal);
        
        /* [helpstring][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_WorkspacePath )( 
            ISimplePointDatasetHelper __RPC_FAR * This,
            /* [in] */ BSTR newVal);
        
        END_INTERFACE
    } ISimplePointDatasetHelperVtbl;

    interface ISimplePointDatasetHelper
    {
        CONST_VTBL struct ISimplePointDatasetHelperVtbl __RPC_FAR *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISimplePointDatasetHelper_QueryInterface(This,riid,ppvObject)	\
    (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)

#define ISimplePointDatasetHelper_AddRef(This)	\
    (This)->lpVtbl -> AddRef(This)

#define ISimplePointDatasetHelper_Release(This)	\
    (This)->lpVtbl -> Release(This)


#define ISimplePointDatasetHelper_put_DatasetName(This,newVal)	\
    (This)->lpVtbl -> put_DatasetName(This,newVal)

#define ISimplePointDatasetHelper_put_WorkspacePath(This,newVal)	\
    (This)->lpVtbl -> put_WorkspacePath(This,newVal)

#endif /* COBJMACROS */


#endif 	/* C style interface */



/* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE ISimplePointDatasetHelper_put_DatasetName_Proxy( 
    ISimplePointDatasetHelper __RPC_FAR * This,
    /* [in] */ BSTR newVal);


void __RPC_STUB ISimplePointDatasetHelper_put_DatasetName_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);


/* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE ISimplePointDatasetHelper_put_WorkspacePath_Proxy( 
    ISimplePointDatasetHelper __RPC_FAR * This,
    /* [in] */ BSTR newVal);


void __RPC_STUB ISimplePointDatasetHelper_put_WorkspacePath_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);



#endif 	/* __ISimplePointDatasetHelper_INTERFACE_DEFINED__ */


#ifndef __ISimplePointCursorHelper_INTERFACE_DEFINED__
#define __ISimplePointCursorHelper_INTERFACE_DEFINED__

/* interface ISimplePointCursorHelper */
/* [unique][helpstring][uuid][object] */ 


EXTERN_C const IID IID_ISimplePointCursorHelper;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("A049B833-73D7-11D6-8ADB-00104BB6FCCB")
    ISimplePointCursorHelper : public IUnknown
    {
    public:
        virtual /* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE put_FilePath( 
            /* [in] */ BSTR newVal) = 0;
        
        virtual /* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE put_FieldMap( 
            /* [in] */ VARIANT fieldmap) = 0;
        
        virtual /* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE put_OID( 
            /* [in] */ long lOID) = 0;
        
        virtual /* [helpstring][propputref] */ HRESULT STDMETHODCALLTYPE putref_QueryEnvelope( 
            /* [in] */ /* external definition not present */ IEnvelope __RPC_FAR *pEnvelope) = 0;
        
        virtual /* [helpstring][propputref] */ HRESULT STDMETHODCALLTYPE putref_Fields( 
            /* [in] */ /* external definition not present */ IFields __RPC_FAR *pFields) = 0;
        
    };
    
#else 	/* C style interface */

    typedef struct ISimplePointCursorHelperVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE __RPC_FAR *QueryInterface )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
        
        ULONG ( STDMETHODCALLTYPE __RPC_FAR *AddRef )( 
            ISimplePointCursorHelper __RPC_FAR * This);
        
        ULONG ( STDMETHODCALLTYPE __RPC_FAR *Release )( 
            ISimplePointCursorHelper __RPC_FAR * This);
        
        /* [helpstring][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_FilePath )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ BSTR newVal);
        
        /* [helpstring][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_FieldMap )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ VARIANT fieldmap);
        
        /* [helpstring][propput] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *put_OID )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ long lOID);
        
        /* [helpstring][propputref] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *putref_QueryEnvelope )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ /* external definition not present */ IEnvelope __RPC_FAR *pEnvelope);
        
        /* [helpstring][propputref] */ HRESULT ( STDMETHODCALLTYPE __RPC_FAR *putref_Fields )( 
            ISimplePointCursorHelper __RPC_FAR * This,
            /* [in] */ /* external definition not present */ IFields __RPC_FAR *pFields);
        
        END_INTERFACE
    } ISimplePointCursorHelperVtbl;

    interface ISimplePointCursorHelper
    {
        CONST_VTBL struct ISimplePointCursorHelperVtbl __RPC_FAR *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISimplePointCursorHelper_QueryInterface(This,riid,ppvObject)	\
    (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)

#define ISimplePointCursorHelper_AddRef(This)	\
    (This)->lpVtbl -> AddRef(This)

#define ISimplePointCursorHelper_Release(This)	\
    (This)->lpVtbl -> Release(This)


#define ISimplePointCursorHelper_put_FilePath(This,newVal)	\
    (This)->lpVtbl -> put_FilePath(This,newVal)

#define ISimplePointCursorHelper_put_FieldMap(This,fieldmap)	\
    (This)->lpVtbl -> put_FieldMap(This,fieldmap)

#define ISimplePointCursorHelper_put_OID(This,lOID)	\
    (This)->lpVtbl -> put_OID(This,lOID)

#define ISimplePointCursorHelper_putref_QueryEnvelope(This,pEnvelope)	\
    (This)->lpVtbl -> putref_QueryEnvelope(This,pEnvelope)

#define ISimplePointCursorHelper_putref_Fields(This,pFields)	\
    (This)->lpVtbl -> putref_Fields(This,pFields)

#endif /* COBJMACROS */


#endif 	/* C style interface */



/* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE ISimplePointCursorHelper_put_FilePath_Proxy( 
    ISimplePointCursorHelper __RPC_FAR * This,
    /* [in] */ BSTR newVal);


void __RPC_STUB ISimplePointCursorHelper_put_FilePath_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);


/* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE ISimplePointCursorHelper_put_FieldMap_Proxy( 
    ISimplePointCursorHelper __RPC_FAR * This,
    /* [in] */ VARIANT fieldmap);


void __RPC_STUB ISimplePointCursorHelper_put_FieldMap_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);


/* [helpstring][propput] */ HRESULT STDMETHODCALLTYPE ISimplePointCursorHelper_put_OID_Proxy( 
    ISimplePointCursorHelper __RPC_FAR * This,
    /* [in] */ long lOID);


void __RPC_STUB ISimplePointCursorHelper_put_OID_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);


/* [helpstring][propputref] */ HRESULT STDMETHODCALLTYPE ISimplePointCursorHelper_putref_QueryEnvelope_Proxy( 
    ISimplePointCursorHelper __RPC_FAR * This,
    /* [in] */ /* external definition not present */ IEnvelope __RPC_FAR *pEnvelope);


void __RPC_STUB ISimplePointCursorHelper_putref_QueryEnvelope_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);


/* [helpstring][propputref] */ HRESULT STDMETHODCALLTYPE ISimplePointCursorHelper_putref_Fields_Proxy( 
    ISimplePointCursorHelper __RPC_FAR * This,
    /* [in] */ /* external definition not present */ IFields __RPC_FAR *pFields);


void __RPC_STUB ISimplePointCursorHelper_putref_Fields_Stub(
    IRpcStubBuffer *This,
    IRpcChannelBuffer *_pRpcChannelBuffer,
    PRPC_MESSAGE _pRpcMessage,
    DWORD *_pdwStubPhase);



#endif 	/* __ISimplePointCursorHelper_INTERFACE_DEFINED__ */


EXTERN_C const CLSID CLSID_SimplePointWorkspaceFactory;

#ifdef __cplusplus

class DECLSPEC_UUID("65E5BA1E-721A-11D6-8AD9-00104BB6FCCB")
SimplePointWorkspaceFactory;
#endif

EXTERN_C const CLSID CLSID_SimplePointWorkspaceHelper;

#ifdef __cplusplus

class DECLSPEC_UUID("79D3B764-730F-11D6-8ADA-00104BB6FCCB")
SimplePointWorkspaceHelper;
#endif

EXTERN_C const CLSID CLSID_SimplePointDatasetHelper;

#ifdef __cplusplus

class DECLSPEC_UUID("79D3B766-730F-11D6-8ADA-00104BB6FCCB")
SimplePointDatasetHelper;
#endif

EXTERN_C const CLSID CLSID_SimplePointCursorHelper;

#ifdef __cplusplus

class DECLSPEC_UUID("A049B834-73D7-11D6-8ADB-00104BB6FCCB")
SimplePointCursorHelper;
#endif
#endif /* __SIMPLEPOINTVCLib_LIBRARY_DEFINED__ */

/* Additional Prototypes for ALL interfaces */

/* end of Additional Prototypes */

#ifdef __cplusplus
}
#endif

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -