VirtualBox

Changeset 97282 in vbox for trunk/src/VBox/GuestHost


Ignore:
Timestamp:
Oct 24, 2022 4:24:15 PM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154270
Message:

Shared Clipboard/Service: Factored out and renamed vboxClipboardSvcWinDataSet() into common Shared Clipboard Windows code to SharedClipboardWinDataWrite(), to also make use of such basic functionality in i.e. the unit tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/SharedClipboard/clipboard-win.cpp

    r96407 r97282  
    937937}
    938938
     939/**
     940 * Writes (places) clipboard data into the Windows clipboard.
     941 *
     942 * @returns VBox status code.
     943 * @param   cfFormat            Windows clipboard format to write data for.
     944 * @param   pvData              Pointer to actual clipboard data to write.
     945 * @param   cbData              Size (in bytes) of actual clipboard data to write.
     946 *
     947 * @note    ASSUMES that the clipboard has already been opened.
     948 */
     949int SharedClipboardWinDataWrite(UINT cfFormat, void *pvData, uint32_t cbData)
     950{
     951    AssertPtrReturn(pvData, VERR_INVALID_POINTER);
     952    AssertReturn   (cbData, VERR_INVALID_PARAMETER);
     953
     954    int rc = VINF_SUCCESS;
     955
     956    HANDLE hMem = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, cbData);
     957
     958    LogFlowFunc(("hMem=%p\n", hMem));
     959
     960    if (hMem)
     961    {
     962        void *pMem = GlobalLock(hMem);
     963
     964        LogFlowFunc(("pMem=%p, GlobalSize=%zu\n", pMem, GlobalSize(hMem)));
     965
     966        if (pMem)
     967        {
     968            LogFlowFunc(("Setting data\n"));
     969
     970            memcpy(pMem, pvData, cbData);
     971
     972            /* The memory must be unlocked before inserting to the Clipboard. */
     973            GlobalUnlock(hMem);
     974
     975            /* 'hMem' contains the host clipboard data.
     976             * size is 'cb' and format is 'format'.
     977             */
     978            HANDLE hClip = SetClipboardData(cfFormat, hMem);
     979
     980            LogFlowFunc(("hClip=%p\n", hClip));
     981
     982            if (hClip)
     983            {
     984                /* The hMem ownership has gone to the system. Nothing to do. */
     985            }
     986            else
     987                rc = RTErrConvertFromWin32(GetLastError());
     988        }
     989        else
     990            rc = VERR_ACCESS_DENIED;
     991
     992        GlobalFree(hMem);
     993    }
     994    else
     995        rc = RTErrConvertFromWin32(GetLastError());
     996
     997    if (RT_FAILURE(rc))
     998        LogFunc(("Setting clipboard data failed with %Rrc\n", rc));
     999
     1000    LogFlowFuncLeaveRC(rc);
     1001    return rc;
     1002}
     1003
    9391004#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
    9401005
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette