mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
When listing devices by connection, list PCI devices only.
It only works on ReactOS (as Windows doesn't use the same instance ID for the PCI bus), but it prevents a crash svn path=/trunk/; revision=21560
This commit is contained in:
@@ -269,7 +269,7 @@ int ListByConnection()
|
||||
DEVINST root;
|
||||
(void)ListView_DeleteAllItems(hwndListView);
|
||||
|
||||
cr = CM_Locate_DevNode(&root, NULL, 0);
|
||||
cr = CM_Locate_DevNode(&root, TEXT("Root\\*PNP0A03\\0000"), 0);
|
||||
|
||||
if (cr != CR_SUCCESS)
|
||||
{
|
||||
@@ -690,7 +690,7 @@ void CreateButtons(HINSTANCE hInstance, HWND hwndParent)
|
||||
hwndButtonListByConnection = CreateWindowEx (
|
||||
0,
|
||||
"button", /* Builtin button class */
|
||||
"List by Connection",
|
||||
"List by Connection (PCI)",
|
||||
WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON,
|
||||
200, 0, 190, 30,
|
||||
hwndParent, /* Parent is this window. */
|
||||
|
||||
Reference in New Issue
Block a user