儲存庫 vbox 的更動 18466
- 時間撮記:
- 2009-3-28 下午06:54:59 (16 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r18108 r18466 313 313 com::SafeIfaceArray <IHostNetworkInterface> hostNetworkInterfaces; 314 314 #if defined(VBOX_WITH_NETFLT) 315 CHECK_ERROR(host, 316 FindHostNetworkInterfacesOfType ( 317 command == LISTBRIDGEDIFS ? HostNetworkInterfaceType_Bridged : HostNetworkInterfaceType_HostOnly, 318 ComSafeArrayAsOutParam (hostNetworkInterfaces))); 315 if (command == LISTBRIDGEDIFS) 316 CHECK_ERROR(host, FindHostNetworkInterfacesOfType(HostNetworkInterfaceType_Bridged, 317 ComSafeArrayAsOutParam(hostNetworkInterfaces))); 318 else 319 CHECK_ERROR(host, FindHostNetworkInterfacesOfType(HostNetworkInterfaceType_HostOnly, 320 ComSafeArrayAsOutParam(hostNetworkInterfaces))); 319 321 #else 320 CHECK_ERROR(host, 321 COMGETTER(NetworkInterfaces) (ComSafeArrayAsOutParam (hostNetworkInterfaces))); 322 CHECK_ERROR(host, COMGETTER(NetworkInterfaces)(ComSafeArrayAsOutParam(hostNetworkInterfaces))); 322 323 #endif 323 324 for (size_t i = 0; i < hostNetworkInterfaces.size(); ++i)
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器