mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
hal: Add a stub for HalGetBusDataByOffset.
This commit is contained in:
parent
8d524700d3
commit
a188b56d52
@ -127,6 +127,13 @@ ULONG WINAPI HalGetBusData(BUS_DATA_TYPE BusDataType, ULONG BusNumber, ULONG Slo
|
||||
return 0;
|
||||
}
|
||||
|
||||
ULONG WINAPI HalGetBusDataByOffset(BUS_DATA_TYPE BusDataType, ULONG BusNumber, ULONG SlotNumber, PVOID Buffer, ULONG Offset, ULONG Length)
|
||||
{
|
||||
FIXME("(%u %u %u %p %u %u) stub!\n", BusDataType, BusNumber, SlotNumber, Buffer, Offset, Length);
|
||||
/* Claim that there is no such bus */
|
||||
return 0;
|
||||
}
|
||||
|
||||
KIRQL WINAPI KeGetCurrentIrql(VOID)
|
||||
{
|
||||
FIXME( " stub!\n");
|
||||
|
@ -34,7 +34,7 @@
|
||||
@ stub HalFreeCommonBuffer
|
||||
@ stub HalGetAdapter
|
||||
@ stdcall HalGetBusData(long long long ptr long)
|
||||
@ stub HalGetBusDataByOffset
|
||||
@ stdcall HalGetBusDataByOffset(long long long ptr long long)
|
||||
@ stub HalGetEnvironmentVariable
|
||||
@ stub HalGetInterruptVector
|
||||
@ stub HalHandleNMI
|
||||
|
Loading…
Reference in New Issue
Block a user