mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
setupapi: Add stubs for SetupDiGetDeviceInstanceIdA/W.
This commit is contained in:
parent
362e8e1f62
commit
7c0a311753
@ -776,6 +776,36 @@ BOOL WINAPI SetupDiEnumDeviceInfo(
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiGetDeviceInstanceIdA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiGetDeviceInstanceIdA(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PSP_DEVINFO_DATA DeviceInfoData,
|
||||
PSTR DeviceInstanceId,
|
||||
DWORD DeviceInstanceIdSize,
|
||||
PDWORD RequiredSize)
|
||||
{
|
||||
FIXME("%p %p %p %d %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstanceId,
|
||||
DeviceInstanceIdSize, RequiredSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiGetDeviceInstanceIdW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiGetDeviceInstanceIdW(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PSP_DEVINFO_DATA DeviceInfoData,
|
||||
PWSTR DeviceInstanceId,
|
||||
DWORD DeviceInstanceIdSize,
|
||||
PDWORD RequiredSize)
|
||||
{
|
||||
FIXME("%p %p %p %d %p\n", DeviceInfoSet, DeviceInfoData, DeviceInstanceId,
|
||||
DeviceInstanceIdSize, RequiredSize);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiGetActualSectionToInstallA (SETUPAPI.@)
|
||||
*/
|
||||
|
@ -324,8 +324,8 @@
|
||||
@ stdcall SetupDiGetDeviceInfoListDetailW(ptr ptr)
|
||||
@ stdcall SetupDiGetDeviceInstallParamsA(ptr ptr ptr)
|
||||
@ stub SetupDiGetDeviceInstallParamsW
|
||||
@ stub SetupDiGetDeviceInstanceIdA
|
||||
@ stub SetupDiGetDeviceInstanceIdW
|
||||
@ stdcall SetupDiGetDeviceInstanceIdA(ptr ptr ptr long ptr)
|
||||
@ stdcall SetupDiGetDeviceInstanceIdW(ptr ptr ptr long ptr)
|
||||
@ stub SetupDiGetDeviceInterfaceAlias
|
||||
@ stdcall SetupDiGetDeviceInterfaceDetailA(long ptr ptr long ptr ptr)
|
||||
@ stdcall SetupDiGetDeviceInterfaceDetailW(long ptr ptr long ptr ptr)
|
||||
|
Loading…
Reference in New Issue
Block a user