Changeset 62471 in vbox for trunk/src/VBox/Frontends/VBoxBugReport
- Timestamp:
- Jul 22, 2016 6:04:30 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109027
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReportWin.cpp
r59812 r62471 61 61 { 62 62 { NCF_VIRTUAL, "virtual" }, 63 64 63 { NCF_SOFTWARE_ENUMERATED, "software_enumerated" }, 64 { NCF_PHYSICAL, "physical" }, 65 65 { NCF_HIDDEN, "hidden" }, 66 67 68 69 70 71 72 73 74 75 76 66 { NCF_NO_SERVICE, "no_service" }, 67 { NCF_NOT_USER_REMOVABLE, "not_user_removable" }, 68 { NCF_MULTIPORT_INSTANCED_ADAPTER, "multiport_instanced_adapter" }, 69 { NCF_HAS_UI, "has_ui" }, 70 { NCF_SINGLE_INSTANCE, "single_instance" }, 71 { NCF_FILTER, "filter" }, 72 { NCF_DONTEXPOSELOWER, "dontexposelower" }, 73 { NCF_HIDE_BINDING, "hide_binding" }, 74 { NCF_NDIS_PROTOCOL, "ndis_protocol" }, 75 { NCF_FIXED_BINDING, "fixed_binding" }, 76 { NCF_LW_FILTER, "lw_filter" } 77 77 }; 78 78 bool fPrintDelim = false; … … 217 217 throw; 218 218 } 219 219 220 220 } 221 221 … … 319 319 if (uExpectedType != REG_NONE && uActualType != uExpectedType) 320 320 throw RTCError(RTCStringFmt("SetupDiGetDeviceRegistryProperty(0x%x) returned type %d instead of %d", 321 uActualType, uExpectedType).c_str()); 321 uActualType, uExpectedType).c_str()); 322 322 PBYTE pBuffer = (PBYTE)RTMemAlloc(cbNeeded); 323 323 if (!pBuffer) … … 408 408 return strName; 409 409 } 410 410 411 411 412 412 RTCString BugReportUsbTreeWin::getExternalHubName(HANDLE hHub, int iPort)
Note:
See TracChangeset
for help on using the changeset viewer.