vbox的更動 58230 路徑 trunk/src/VBox/HostServices
- 時間撮記:
- 2015-10-14 上午11:31:33 (9 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/HostServices/DragAndDrop/service.cpp
r58212 r58230 382 382 if (cParms == 2) 383 383 { 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); 388 391 if (RT_SUCCESS(rc)) 389 392 { 390 393 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(); 392 395 } 393 394 /* Note: Does not reach the host; the client's protocol version395 * is only kept in this service. */396 396 } 397 397 break;
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器