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

📄 mstsclib_h.h

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 H
📖 第 1 页 / 共 5 页
字号:
        /* [id] */ HRESULT ( STDMETHODCALLTYPE *CreateVirtualChannels )( 
            IMsRdpClient2 * This,
            /* [in] */ BSTR newVal);
        
        /* [id] */ HRESULT ( STDMETHODCALLTYPE *SendOnVirtualChannel )( 
            IMsRdpClient2 * This,
            /* [in] */ BSTR chanName,
            /* [in] */ BSTR ChanData);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_ColorDepth )( 
            IMsRdpClient2 * This,
            /* [in] */ long pcolorDepth);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_ColorDepth )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ long *pcolorDepth);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_AdvancedSettings2 )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ IMsRdpClientAdvancedSettings **ppAdvSettings);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_SecuredSettings2 )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ IMsRdpClientSecuredSettings **ppSecuredSettings);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_ExtendedDisconnectReason )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ ExtendedDisconnectReasonCode *pExtendedDisconnectReason);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_FullScreen )( 
            IMsRdpClient2 * This,
            /* [in] */ VARIANT_BOOL pfFullScreen);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_FullScreen )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ VARIANT_BOOL *pfFullScreen);
        
        /* [id] */ HRESULT ( STDMETHODCALLTYPE *SetVirtualChannelOptions )( 
            IMsRdpClient2 * This,
            /* [in] */ BSTR chanName,
            /* [in] */ long chanOptions);
        
        /* [id] */ HRESULT ( STDMETHODCALLTYPE *GetVirtualChannelOptions )( 
            IMsRdpClient2 * This,
            /* [in] */ BSTR chanName,
            /* [retval][out] */ long *pChanOptions);
        
        /* [id] */ HRESULT ( STDMETHODCALLTYPE *RequestClose )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ ControlCloseStatus *pCloseStatus);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_AdvancedSettings3 )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ IMsRdpClientAdvancedSettings2 **ppAdvSettings);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_ConnectedStatusText )( 
            IMsRdpClient2 * This,
            /* [in] */ BSTR pConnectedStatusText);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_ConnectedStatusText )( 
            IMsRdpClient2 * This,
            /* [retval][out] */ BSTR *pConnectedStatusText);
        
        END_INTERFACE
    } IMsRdpClient2Vtbl;

    interface IMsRdpClient2
    {
        CONST_VTBL struct IMsRdpClient2Vtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


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

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

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


#define IMsRdpClient2_GetTypeInfoCount(This,pctinfo)	\
    ( (This)->lpVtbl -> GetTypeInfoCount(This,pctinfo) ) 

#define IMsRdpClient2_GetTypeInfo(This,iTInfo,lcid,ppTInfo)	\
    ( (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo) ) 

#define IMsRdpClient2_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)	\
    ( (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) ) 

#define IMsRdpClient2_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)	\
    ( (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) ) 


#define IMsRdpClient2_put_Server(This,pServer)	\
    ( (This)->lpVtbl -> put_Server(This,pServer) ) 

#define IMsRdpClient2_get_Server(This,pServer)	\
    ( (This)->lpVtbl -> get_Server(This,pServer) ) 

#define IMsRdpClient2_put_Domain(This,pDomain)	\
    ( (This)->lpVtbl -> put_Domain(This,pDomain) ) 

#define IMsRdpClient2_get_Domain(This,pDomain)	\
    ( (This)->lpVtbl -> get_Domain(This,pDomain) ) 

#define IMsRdpClient2_put_UserName(This,pUserName)	\
    ( (This)->lpVtbl -> put_UserName(This,pUserName) ) 

#define IMsRdpClient2_get_UserName(This,pUserName)	\
    ( (This)->lpVtbl -> get_UserName(This,pUserName) ) 

#define IMsRdpClient2_put_DisconnectedText(This,pDisconnectedText)	\
    ( (This)->lpVtbl -> put_DisconnectedText(This,pDisconnectedText) ) 

#define IMsRdpClient2_get_DisconnectedText(This,pDisconnectedText)	\
    ( (This)->lpVtbl -> get_DisconnectedText(This,pDisconnectedText) ) 

#define IMsRdpClient2_put_ConnectingText(This,pConnectingText)	\
    ( (This)->lpVtbl -> put_ConnectingText(This,pConnectingText) ) 

#define IMsRdpClient2_get_ConnectingText(This,pConnectingText)	\
    ( (This)->lpVtbl -> get_ConnectingText(This,pConnectingText) ) 

#define IMsRdpClient2_get_Connected(This,pIsConnected)	\
    ( (This)->lpVtbl -> get_Connected(This,pIsConnected) ) 

#define IMsRdpClient2_put_DesktopWidth(This,pVal)	\
    ( (This)->lpVtbl -> put_DesktopWidth(This,pVal) ) 

#define IMsRdpClient2_get_DesktopWidth(This,pVal)	\
    ( (This)->lpVtbl -> get_DesktopWidth(This,pVal) ) 

#define IMsRdpClient2_put_DesktopHeight(This,pVal)	\
    ( (This)->lpVtbl -> put_DesktopHeight(This,pVal) ) 

#define IMsRdpClient2_get_DesktopHeight(This,pVal)	\
    ( (This)->lpVtbl -> get_DesktopHeight(This,pVal) ) 

#define IMsRdpClient2_put_StartConnected(This,pfStartConnected)	\
    ( (This)->lpVtbl -> put_StartConnected(This,pfStartConnected) ) 

#define IMsRdpClient2_get_StartConnected(This,pfStartConnected)	\
    ( (This)->lpVtbl -> get_StartConnected(This,pfStartConnected) ) 

#define IMsRdpClient2_get_HorizontalScrollBarVisible(This,pfHScrollVisible)	\
    ( (This)->lpVtbl -> get_HorizontalScrollBarVisible(This,pfHScrollVisible) ) 

#define IMsRdpClient2_get_VerticalScrollBarVisible(This,pfVScrollVisible)	\
    ( (This)->lpVtbl -> get_VerticalScrollBarVisible(This,pfVScrollVisible) ) 

#define IMsRdpClient2_put_FullScreenTitle(This,rhs)	\
    ( (This)->lpVtbl -> put_FullScreenTitle(This,rhs) ) 

#define IMsRdpClient2_get_CipherStrength(This,pCipherStrength)	\
    ( (This)->lpVtbl -> get_CipherStrength(This,pCipherStrength) ) 

#define IMsRdpClient2_get_Version(This,pVersion)	\
    ( (This)->lpVtbl -> get_Version(This,pVersion) ) 

#define IMsRdpClient2_get_SecuredSettingsEnabled(This,pSecuredSettingsEnabled)	\
    ( (This)->lpVtbl -> get_SecuredSettingsEnabled(This,pSecuredSettingsEnabled) ) 

#define IMsRdpClient2_get_SecuredSettings(This,ppSecuredSettings)	\
    ( (This)->lpVtbl -> get_SecuredSettings(This,ppSecuredSettings) ) 

#define IMsRdpClient2_get_AdvancedSettings(This,ppAdvSettings)	\
    ( (This)->lpVtbl -> get_AdvancedSettings(This,ppAdvSettings) ) 

#define IMsRdpClient2_get_Debugger(This,ppDebugger)	\
    ( (This)->lpVtbl -> get_Debugger(This,ppDebugger) ) 

#define IMsRdpClient2_Connect(This)	\
    ( (This)->lpVtbl -> Connect(This) ) 

#define IMsRdpClient2_Disconnect(This)	\
    ( (This)->lpVtbl -> Disconnect(This) ) 

#define IMsRdpClient2_CreateVirtualChannels(This,newVal)	\
    ( (This)->lpVtbl -> CreateVirtualChannels(This,newVal) ) 

#define IMsRdpClient2_SendOnVirtualChannel(This,chanName,ChanData)	\
    ( (This)->lpVtbl -> SendOnVirtualChannel(This,chanName,ChanData) ) 


#define IMsRdpClient2_put_ColorDepth(This,pcolorDepth)	\
    ( (This)->lpVtbl -> put_ColorDepth(This,pcolorDepth) ) 

#define IMsRdpClient2_get_ColorDepth(This,pcolorDepth)	\
    ( (This)->lpVtbl -> get_ColorDepth(This,pcolorDepth) ) 

#define IMsRdpClient2_get_AdvancedSettings2(This,ppAdvSettings)	\
    ( (This)->lpVtbl -> get_AdvancedSettings2(This,ppAdvSettings) ) 

#define IMsRdpClient2_get_SecuredSettings2(This,ppSecuredSettings)	\
    ( (This)->lpVtbl -> get_SecuredSettings2(This,ppSecuredSettings) ) 

#define IMsRdpClient2_get_ExtendedDisconnectReason(This,pExtendedDisconnectReason)	\
    ( (This)->lpVtbl -> get_ExtendedDisconnectReason(This,pExtendedDisconnectReason) ) 

#define IMsRdpClient2_put_FullScreen(This,pfFullScreen)	\
    ( (This)->lpVtbl -> put_FullScreen(This,pfFullScreen) ) 

#define IMsRdpClient2_get_FullScreen(This,pfFullScreen)	\
    ( (This)->lpVtbl -> get_FullScreen(This,pfFullScreen) ) 

#define IMsRdpClient2_SetVirtualChannelOptions(This,chanName,chanOptions)	\
    ( (This)->lpVtbl -> SetVirtualChannelOptions(This,chanName,chanOptions) ) 

#define IMsRdpClient2_GetVirtualChannelOptions(This,chanName,pChanOptions)	\
    ( (This)->lpVtbl -> GetVirtualChannelOptions(This,chanName,pChanOptions) ) 

#define IMsRdpClient2_RequestClose(This,pCloseStatus)	\
    ( (This)->lpVtbl -> RequestClose(This,pCloseStatus) ) 


#define IMsRdpClient2_get_AdvancedSettings3(This,ppAdvSettings)	\
    ( (This)->lpVtbl -> get_AdvancedSettings3(This,ppAdvSettings) ) 

#define IMsRdpClient2_put_ConnectedStatusText(This,pConnectedStatusText)	\
    ( (This)->lpVtbl -> put_ConnectedStatusText(This,pConnectedStatusText) ) 

#define IMsRdpClient2_get_ConnectedStatusText(This,pConnectedStatusText)	\
    ( (This)->lpVtbl -> get_ConnectedStatusText(This,pConnectedStatusText) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __IMsRdpClient2_INTERFACE_DEFINED__ */


#ifndef __IMsRdpClient3_INTERFACE_DEFINED__
#define __IMsRdpClient3_INTERFACE_DEFINED__

/* interface IMsRdpClient3 */
/* [object][oleautomation][dual][uuid] */ 


EXTERN_C const IID IID_IMsRdpClient3;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("91B7CBC5-A72E-4FA0-9300-D647D7E897FF")
    IMsRdpClient3 : public IMsRdpClient2
    {
    public:
        virtual /* [propget][id] */ HRESULT STDMETHODCALLTYPE get_AdvancedSettings4( 
            /* [retval][out] */ IMsRdpClientAdvancedSettings3 **ppAdvSettings) = 0;
        
    };
    
#else 	/* C style interface */

    typedef struct IMsRdpClient3Vtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            IMsRdpClient3 * This,
            /* [in] */ REFIID riid,
            /* [iid_is][out] */ 
            __RPC__deref_out  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            IMsRdpClient3 * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            IMsRdpClient3 * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfoCount )( 
            IMsRdpClient3 * This,
            /* [out] */ UINT *pctinfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetTypeInfo )( 
            IMsRdpClient3 * This,
            /* [in] */ UINT iTInfo,
            /* [in] */ LCID lcid,
            /* [out] */ ITypeInfo **ppTInfo);
        
        HRESULT ( STDMETHODCALLTYPE *GetIDsOfNames )( 
            IMsRdpClient3 * This,
            /* [in] */ REFIID riid,
            /* [size_is][in] */ LPOLESTR *rgszNames,
            /* [range][in] */ UINT cNames,
            /* [in] */ LCID lcid,
            /* [size_is][out] */ DISPID *rgDispId);
        
        /* [local] */ HRESULT ( STDMETHODCALLTYPE *Invoke )( 
            IMsRdpClient3 * 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);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Server )( 
            IMsRdpClient3 * This,
            /* [in] */ BSTR pServer);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Server )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ BSTR *pServer);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_Domain )( 
            IMsRdpClient3 * This,
            /* [in] */ BSTR pDomain);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Domain )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ BSTR *pDomain);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_UserName )( 
            IMsRdpClient3 * This,
            /* [in] */ BSTR pUserName);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_UserName )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ BSTR *pUserName);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_DisconnectedText )( 
            IMsRdpClient3 * This,
            /* [in] */ BSTR pDisconnectedText);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_DisconnectedText )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ BSTR *pDisconnectedText);
        
        /* [propput][id] */ HRESULT ( STDMETHODCALLTYPE *put_ConnectingText )( 
            IMsRdpClient3 * This,
            /* [in] */ BSTR pConnectingText);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_ConnectingText )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ BSTR *pConnectingText);
        
        /* [propget][id] */ HRESULT ( STDMETHODCALLTYPE *get_Connected )( 
            IMsRdpClient3 * This,
            /* [retval][out] */ short *pIsConnected);

⌨️ 快捷键说明

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