- Timestamp:
- Apr 29, 2019 11:07:26 AM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceClipboard-os2.cpp
r78315 r78346 775 775 * Listener message - the host has new formats to offer. 776 776 */ 777 case WM_USER + VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS:777 case WM_USER + VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS: 778 778 vgsvcClipboardOs2AdvertiseHostFormats(LONGFROMMP(mp1)); 779 779 break; … … 895 895 * respond do WM_RENDERFORMAT message. 896 896 */ 897 case VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS:898 if (!WinPostMsg(g_hwndWorker, WM_USER + VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS,897 case VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS: 898 if (!WinPostMsg(g_hwndWorker, WM_USER + VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS, 899 899 MPFROMLONG(fFormats), 0)) 900 900 VGSvcError("WinPostMsg(%lx, FORMATS,,) failed, lasterr=%#lx\n", -
trunk/src/VBox/Additions/haiku/VBoxTray/VBoxClipboard.cpp
r78315 r78346 380 380 switch (u32Msg) 381 381 { 382 case VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS:382 case VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS: 383 383 { 384 384 /* … … 386 386 * the information to the handler. 387 387 */ 388 LogRelFlowFunc(("VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS u32Formats=%x\n", u32Formats));388 LogRelFlowFunc(("VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS u32Formats=%x\n", u32Formats)); 389 389 BMessage msg(VBOX_GUEST_CLIPBOARD_HOST_MSG_FORMATS); 390 390 msg.AddInt32("Formats", (uint32)u32Formats); -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r78317 r78346 235 235 * future requests from guest applications. 236 236 */ 237 LogRelFlowFunc(("VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS fFormats=%x\n", fFormats));237 LogRelFlowFunc(("VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS fFormats=%x\n", fFormats)); 238 238 ClipAnnounceFormatToX11(g_ctx.pBackend, fFormats); 239 239 break; -
trunk/src/VBox/HostServices/SharedClipboard/VBoxSharedClipboardSvc.cpp
r78317 r78346 45 45 * VBOX_SHARED_CLIPBOARD_HOST_MSG_READ_DATA (request that the guest send the 46 46 * contents of its clipboard to the host) and 47 * VBOX_SHARED_CLIPBOARD_HOST_MSG_ FORMATS (to notify the guest that new47 * VBOX_SHARED_CLIPBOARD_HOST_MSG_REPORT_FORMATS (to notify the guest that new 48 48 * clipboard data is available). If a host message is sent while the guest is 49 49 * not waiting, it will be queued until the guest requests it. At most one
Note:
See TracChangeset
for help on using the changeset viewer.