setupapi: Implement SetupDiGetClassDevsA on top of SetupDiGetClassDevsExW.

This commit is contained in:
Juan Lang 2007-09-24 13:02:58 -07:00 committed by Alexandre Julliard
parent e45f840944
commit 1b023ff69d
1 changed files with 2 additions and 1 deletions

View File

@ -1761,7 +1761,8 @@ HDEVINFO WINAPI SetupDiGetClassDevsA(
}
MultiByteToWideChar(CP_ACP, 0, enumstr, -1, enumstrW, len);
}
ret = SetupDiGetClassDevsW(class, enumstrW, parent, flags);
ret = SetupDiGetClassDevsExW(class, enumstrW, parent, flags, NULL, NULL,
NULL);
HeapFree(GetProcessHeap(), 0, enumstrW);
end: