Commit a555658b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

hal: Add a stub for HalGetBusData() to make 3DMark2001SE happy in WinNT mode.

parent ae941108
......@@ -31,7 +31,7 @@
#include "windef.h"
#include "winternl.h"
#include "excpt.h"
#include "ddk/wdm.h"
#include "ddk/ntddk.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(ntoskrnl);
......@@ -99,3 +99,10 @@ VOID WINAPI KfReleaseSpinLock(PKSPIN_LOCK SpinLock, KIRQL NewIrql)
{
FIXME( "(%p %u) stub!\n", SpinLock, NewIrql );
}
ULONG WINAPI HalGetBusData(BUS_DATA_TYPE BusDataType, ULONG BusNumber, ULONG SlotNumber, PVOID Buffer, ULONG Length)
{
FIXME("(%u %u %u %p %u) stub!\n", BusDataType, BusNumber, SlotNumber, Buffer, Length);
/* Claim that there is no such bus */
return 0;
}
......@@ -33,7 +33,7 @@
@ stub HalFlushCommonBuffer
@ stub HalFreeCommonBuffer
@ stub HalGetAdapter
@ stub HalGetBusData
@ stdcall HalGetBusData(long long long ptr long)
@ stub HalGetBusDataByOffset
@ stub HalGetEnvironmentVariable
@ stub HalGetInterruptVector
......
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