Commit 3346d092 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

hal: Add stub for HalTranslateBusAddress.

parent 03c7dfbd
...@@ -145,6 +145,14 @@ ULONG WINAPI HalGetBusDataByOffset(BUS_DATA_TYPE BusDataType, ULONG BusNumber, U ...@@ -145,6 +145,14 @@ ULONG WINAPI HalGetBusDataByOffset(BUS_DATA_TYPE BusDataType, ULONG BusNumber, U
return 0; return 0;
} }
BOOLEAN WINAPI HalTranslateBusAddress(INTERFACE_TYPE InterfaceType, ULONG BusNumber, PHYSICAL_ADDRESS BusAddress,
PULONG AddressSpace, PPHYSICAL_ADDRESS TranslatedAddress)
{
FIXME("(%d %d %s %p %p) stub!\n", InterfaceType, BusNumber,
wine_dbgstr_longlong(BusAddress.QuadPart), AddressSpace, TranslatedAddress);
return FALSE;
}
KIRQL WINAPI KeGetCurrentIrql(VOID) KIRQL WINAPI KeGetCurrentIrql(VOID)
{ {
FIXME( " stub!\n"); FIXME( " stub!\n");
......
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
@ stub HalStartNextProcessor @ stub HalStartNextProcessor
@ stub HalStartProfileInterrupt @ stub HalStartProfileInterrupt
@ stub HalStopProfileInterrupt @ stub HalStopProfileInterrupt
@ stub HalTranslateBusAddress @ stdcall HalTranslateBusAddress(long long int64 ptr ptr)
@ stub IoAssignDriveLetters @ stub IoAssignDriveLetters
@ stub IoFlushAdapterBuffers @ stub IoFlushAdapterBuffers
@ stub IoFreeAdapterChannel @ stub IoFreeAdapterChannel
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment