Changeset 93315 in vbox for trunk/src/VBox
- Timestamp:
- Jan 18, 2022 2:02:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/testcase/tstClipboardGH-X11.cpp
r93115 r93315 41 41 extern SHCLX11FMT clipRealFormatForX11Format(SHCLX11FMTIDX uFmtIdx); 42 42 extern Atom clipGetAtom(PSHCLX11CTX pCtx, const char *pcszName); 43 extern void clipQueryX11 Formats(PSHCLX11CTX pCtx);43 extern void clipQueryX11Targets(PSHCLX11CTX pCtx); 44 44 extern size_t clipReportMaxX11Formats(void); 45 45 … … 62 62 * Own callback implementations * 63 63 *********************************************************************************************************************************/ 64 extern DECLCALLBACK(void) clip ConvertX11TargetsCallback(Widget widget, XtPointer pClient,65 66 67 64 extern DECLCALLBACK(void) clipQueryX11TargetsCallback(Widget widget, XtPointer pClient, 65 Atom * /* selection */, Atom *atomType, 66 XtPointer pValue, long unsigned int *pcLen, 67 int *piFormat); 68 68 69 69 … … 338 338 static void tstClipSendTargetUpdate(PSHCLX11CTX pCtx) 339 339 { 340 clipQueryX11 Formats(pCtx);340 clipQueryX11Targets(pCtx); 341 341 } 342 342 … … 800 800 long unsigned int cLen = 0; 801 801 int format = 8; 802 clip ConvertX11TargetsCallback(NULL, (XtPointer) &X11Ctx, NULL, &atom, NULL, &cLen,803 802 clipQueryX11TargetsCallback(NULL, (XtPointer) &X11Ctx, NULL, &atom, NULL, &cLen, 803 &format); 804 804 RTTEST_CHECK_MSG(hTest, tstClipQueryFormats() == 0, 805 805 (hTest, "Wrong targets reported: %02X\n",
Note:
See TracChangeset
for help on using the changeset viewer.