setupapi: Add stub for SetupDiCreateDeviceInfoW.
This commit is contained in:
parent
bb80e2282e
commit
41aefd8c62
|
@ -696,6 +696,27 @@ SetupDiCreateDeviceInfoListExW(const GUID *ClassGuid,
|
|||
return (HDEVINFO)list;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiCreateDeviceInfoW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiCreateDeviceInfoW(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PCWSTR DeviceName,
|
||||
CONST GUID *ClassGuid,
|
||||
PCWSTR DeviceDescription,
|
||||
HWND hwndParent,
|
||||
DWORD CreationFlags,
|
||||
PSP_DEVINFO_DATA DeviceInfoData)
|
||||
{
|
||||
TRACE("%p %s %s %s %p %lx %p\n", DeviceInfoSet, debugstr_w(DeviceName),
|
||||
debugstr_guid(ClassGuid), debugstr_w(DeviceDescription),
|
||||
hwndParent, CreationFlags, DeviceInfoData);
|
||||
|
||||
FIXME("stub");
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiEnumDeviceInfo (SETUPAPI.@)
|
||||
*/
|
||||
|
|
|
@ -286,7 +286,7 @@
|
|||
@ stdcall SetupDiCreateDeviceInfoList(ptr ptr)
|
||||
@ stdcall SetupDiCreateDeviceInfoListExA(ptr long str ptr)
|
||||
@ stdcall SetupDiCreateDeviceInfoListExW(ptr long str ptr)
|
||||
@ stub SetupDiCreateDeviceInfoW
|
||||
@ stdcall SetupDiCreateDeviceInfoW(long wstr ptr wstr long long ptr)
|
||||
@ stub SetupDiDeleteDevRegKey
|
||||
@ stub SetupDiDeleteDeviceInfo
|
||||
@ stub SetupDiDeleteDeviceInterfaceData
|
||||
|
|
Loading…
Reference in New Issue