Changeset 84138 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- May 4, 2020 4:14:42 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137733
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc-x11-stubs.cpp
r83947 r84138 39 39 40 40 /** Initialise the host side of the shared clipboard - called by the hgcm layer. */ 41 int VBoxShClSvcImplInit(void)41 int ShClSvcImplInit(void) 42 42 { 43 43 LogFlowFunc(("called, returning VINF_SUCCESS\n")); … … 46 46 47 47 /** Terminate the host side of the shared clipboard - called by the hgcm layer. */ 48 void VBoxShClSvcImplDestroy(void)48 void ShClSvcImplDestroy(void) 49 49 { 50 50 LogFlowFunc(("called, returning\n")); … … 58 58 * @param fHeadless Whether headless. 59 59 */ 60 int VBoxShClSvcImplConnect(PSHCLCLIENT pClient, bool fHeadless)60 int ShClSvcImplConnect(PSHCLCLIENT pClient, bool fHeadless) 61 61 { 62 62 RT_NOREF(pClient, fHeadless); … … 69 69 * after a save and restore of the guest. 70 70 */ 71 int Sh aredClipboardSvcImplSync(PSHCLCLIENT pClient)71 int ShClSvcImplSync(PSHCLCLIENT pClient) 72 72 { 73 73 RT_NOREF(pClient); … … 81 81 * @param pClient Structure containing context information about the guest system 82 82 */ 83 int Sh aredClipboardSvcImplDisconnect(PSHCLCLIENT pClient)83 int ShClSvcImplDisconnect(PSHCLCLIENT pClient) 84 84 { 85 85 RT_NOREF(pClient); … … 92 92 * 93 93 * @param pClient Context data for the guest system. 94 * @param pCmdCtx Command context to use.95 94 * @param fFormats Clipboard formats the guest is offering. 96 95 */ 97 int SharedClipboardSvcImplFormatAnnounce(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, 98 SHCLFORMATS fFormats) 96 int ShClSvcImplFormatAnnounce(PSHCLCLIENT pClient, SHCLFORMATS fFormats) 99 97 { 100 RT_NOREF(pClient, pCmdCtx,fFormats);98 RT_NOREF(pClient, fFormats); 101 99 return VINF_SUCCESS; 102 100 } … … 112 110 * @param pcbActual Where to store the actual amount of data available. 113 111 */ 114 int Sh aredClipboardSvcImplReadData(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx,115 112 int ShClSvcImplReadData(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, 113 SHCLFORMAT uFormat, void *pvData, uint32_t cbData, uint32_t *pcbActual) 116 114 { 117 115 RT_NOREF(pClient, pCmdCtx, uFormat, pvData, cbData); … … 123 121 } 124 122 125 int Sh aredClipboardSvcImplWriteData(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx,126 123 int ShClSvcImplWriteData(PSHCLCLIENT pClient, PSHCLCLIENTCMDCTX pCmdCtx, 124 SHCLFORMAT uFormat, void *pvData, uint32_t cbData) 127 125 { 128 126 RT_NOREF(pClient, pCmdCtx, uFormat, pvData, cbData);
Note:
See TracChangeset
for help on using the changeset viewer.