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 SetupDiBuildClassInfoList(long ptr long ptr)
|
||||||
@ stdcall SetupDiBuildClassInfoListExA(long ptr long ptr str ptr)
|
@ stdcall SetupDiBuildClassInfoListExA(long ptr long ptr str ptr)
|
||||||
@ stdcall SetupDiBuildClassInfoListExW(long ptr long ptr wstr ptr)
|
@ stdcall SetupDiBuildClassInfoListExW(long ptr long ptr wstr ptr)
|
||||||
@ stub SetupDiBuildDriverInfoList
|
@ stdcall SetupDiBuildDriverInfoList(ptr ptr long)
|
||||||
@ stdcall SetupDiCallClassInstaller(long ptr ptr)
|
@ stdcall SetupDiCallClassInstaller(long ptr ptr)
|
||||||
@ stub SetupDiCancelDriverInfoSearch
|
@ stub SetupDiCancelDriverInfoSearch
|
||||||
@ stub SetupDiChangeState
|
@ stub SetupDiChangeState
|
||||||
|
@ -297,7 +297,7 @@
|
||||||
@ stdcall SetupDiCreateDeviceInterfaceRegKeyA(ptr ptr long long ptr ptr)
|
@ stdcall SetupDiCreateDeviceInterfaceRegKeyA(ptr ptr long long ptr ptr)
|
||||||
@ stdcall SetupDiCreateDeviceInterfaceRegKeyW(ptr ptr long long ptr ptr)
|
@ stdcall SetupDiCreateDeviceInterfaceRegKeyW(ptr ptr long long ptr ptr)
|
||||||
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
|
@ stdcall SetupDiDeleteDevRegKey(ptr ptr long long long)
|
||||||
@ stub SetupDiDeleteDeviceInfo
|
@ stdcall SetupDiDeleteDeviceInfo(ptr ptr)
|
||||||
@ stub SetupDiDeleteDeviceInterfaceData
|
@ stub SetupDiDeleteDeviceInterfaceData
|
||||||
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
@ stdcall SetupDiDeleteDeviceInterfaceRegKey(ptr ptr long)
|
||||||
@ stub SetupDiDeleteDeviceRegKey
|
@ stub SetupDiDeleteDeviceRegKey
|
||||||
|
|
|
@ -393,3 +393,27 @@ BOOL WINAPI SetupLogFileA(
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
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