mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
setupapi: Add stubs for SetupDiBuildDriverInfoList and SetupDiDeleteDeviceInfo:.
This commit is contained in:
parent
5b7bd76086
commit
dab1bbef29
@ -273,7 +273,7 @@
|
||||
@ stdcall SetupDiBuildClassInfoList(long ptr long ptr)
|
||||
@ stdcall SetupDiBuildClassInfoListExA(long ptr long ptr str ptr)
|
||||
@ stdcall SetupDiBuildClassInfoListExW(long ptr long ptr wstr ptr)
|
||||
@ stub SetupDiBuildDriverInfoList
|
||||
@ stdcall SetupDiBuildDriverInfoList(ptr ptr long)
|
||||
@ stdcall SetupDiCallClassInstaller(long ptr ptr)
|
||||
@ stub SetupDiCancelDriverInfoSearch
|
||||
@ stub SetupDiChangeState
|
||||
@ -297,7 +297,7 @@
|
||||
@ stdcall SetupDiCreateDeviceInterfaceRegKeyA(ptr ptr long long ptr ptr)
|
||||
@ stdcall SetupDiCreateDeviceInterfaceRegKeyW(ptr ptr long long ptr ptr)
|
||||
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
|
||||
@ stub SetupDiDeleteDeviceInfo
|
||||
@ stdcall SetupDiDeleteDeviceInfo(ptr ptr)
|
||||
@ stub SetupDiDeleteDeviceInterfaceData
|
||||
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
||||
@ stub SetupDiDeleteDeviceRegKey
|
||||
|
@ -393,3 +393,27 @@ BOOL WINAPI SetupLogFileA(
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiBuildDriverInfoList (SETUPAPI.@)
|
||||
*/
|
||||
|
||||
BOOL WINAPI SetupDiBuildDriverInfoList(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA DeviceInfoData, DWORD DriverType)
|
||||
{
|
||||
FIXME(": stub %p, %p, %d\n", DeviceInfoSet, DeviceInfoData, DriverType);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiDeleteDeviceInfo (SETUPAPI.@)
|
||||
*/
|
||||
|
||||
BOOL WINAPI SetupDiDeleteDeviceInfo(HDEVINFO DeviceInfoSet, PSP_DEVINFO_DATA DeviceInfoData)
|
||||
{
|
||||
FIXME(": stub %p, %p\n", DeviceInfoSet, DeviceInfoData);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user