mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
Correct location of a few stubs. Getting ready to sync in a day or so.
svn path=/trunk/; revision=13243
This commit is contained in:
parent
a7272a8721
commit
c8f0cffff4
2 changed files with 31 additions and 1 deletions
|
@ -1104,3 +1104,32 @@ HKEY WINAPI SetupDiOpenClassRegKeyExW(
|
|||
|
||||
return hClassKey;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiOpenDeviceInterfaceW(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PCWSTR DevicePath,
|
||||
DWORD OpenFlags,
|
||||
PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
|
||||
{
|
||||
FIXME("%p %s %08lx %p\n",
|
||||
DeviceInfoSet, debugstr_w(DevicePath), OpenFlags, DeviceInterfaceData);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiOpenDeviceInterfaceA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupDiOpenDeviceInterfaceA(
|
||||
HDEVINFO DeviceInfoSet,
|
||||
PCSTR DevicePath,
|
||||
DWORD OpenFlags,
|
||||
PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData)
|
||||
{
|
||||
FIXME("%p %s %08lx %p\n", DeviceInfoSet,
|
||||
debugstr_a(DevicePath), OpenFlags, DeviceInterfaceData);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -258,9 +258,10 @@
|
|||
@ stub SetupQueryFileLogW
|
||||
@ stub SetupQueryInfFileInformationA
|
||||
@ stub SetupQueryInfFileInformationW
|
||||
@ stub SetupQueryInfOriginalFileInformationA
|
||||
@ stub SetupQueryInfOriginalFileInformationW
|
||||
@ stub SetupQueryInfVersionInformationA
|
||||
@ stub SetupQueryInfVersionInformationW
|
||||
@ stub SetupQueryInfOriginalFileInformationW
|
||||
@ stub SetupQuerySourceListA
|
||||
@ stub SetupQuerySourceListW
|
||||
@ stdcall SetupQuerySpaceRequiredOnDriveA(long str ptr ptr long)
|
||||
|
|
Loading…
Reference in a new issue