VirtualBox

vbox的更動 58230 路徑 trunk/src/VBox/HostServices


忽略:
時間撮記:
2015-10-14 上午11:31:33 (9 年 以前)
作者:
vboxsync
訊息:

DnD: Bugfixes.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/HostServices/DragAndDrop/service.cpp

    r58212 r58230  
    382382                if (cParms == 2)
    383383                {
    384                     uint32_t uProtocol;
    385                     rc = paParms[0].getUInt32(&uProtocol); /* Get protocol version. */
    386                     if (RT_SUCCESS(rc))
    387                         rc = pClient->setProtocol(uProtocol);
     384                    VBOXDNDCBCONNECTMSGDATA data;
     385                    data.hdr.u32Magic = CB_MAGIC_DND_CONNECT;
     386                    rc = paParms[0].getUInt32(&data.uProtocol);
     387                    if (RT_SUCCESS(rc))
     388                        rc = paParms[1].getUInt32(&data.uFlags);
     389                    if (RT_SUCCESS(rc))
     390                        rc = pClient->setProtocol(data.uProtocol);
    388391                    if (RT_SUCCESS(rc))
    389392                    {
    390393                        LogFlowFunc(("Client %RU32 is now using protocol v%RU32\n", pClient->clientId(), pClient->protocol()));
    391                         /** @todo Handle connection flags (paParms[1]). */
     394                        DO_HOST_CALLBACK();
    392395                    }
    393 
    394                     /* Note: Does not reach the host; the client's protocol version
    395                      *       is only kept in this service. */
    396396                }
    397397                break;
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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