Changeset 82513 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Dec 9, 2019 1:21:55 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r82480 r82513 175 175 * Tell the host that new clipboard formats are available. 176 176 * 177 * @param pCtxOur context information.178 * @param FormatsThe formats to report.179 */ 180 DECLCALLBACK(void) ShClX11ReportFormatsCallback(PSHCLCONTEXT pCtx, SHCLFORMATS Formats)177 * @param pCtx Our context information. 178 * @param fFormats The formats to report. 179 */ 180 DECLCALLBACK(void) ShClX11ReportFormatsCallback(PSHCLCONTEXT pCtx, SHCLFORMATS fFormats) 181 181 { 182 182 RT_NOREF(pCtx); 183 183 184 LogFlowFunc(("Formats=0x%x\n", Formats)); 185 186 SHCLFORMATDATA formatData; 187 RT_ZERO(formatData); 188 189 formatData.Formats = Formats; 190 191 int rc2 = VbglR3ClipboardFormatsReportEx(&pCtx->CmdCtx, &formatData); 184 LogFlowFunc(("Formats=0x%x\n", fFormats)); 185 186 int rc2 = VbglR3ClipboardReportFormats(pCtx->CmdCtx.uClientID, fFormats); 192 187 RT_NOREF(rc2); 193 188 LogFlowFuncLeaveRC(rc2);
Note:
See TracChangeset
for help on using the changeset viewer.