mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
Merge branch 'mr/pci-poking-time' into 'master'
hal: Add HalSetBusDataByOffset stub. See merge request wine/wine!6058
This commit is contained in:
commit
64bb1476a5
2 changed files with 8 additions and 1 deletions
|
@ -179,6 +179,13 @@ ULONG WINAPI HalGetBusDataByOffset(BUS_DATA_TYPE BusDataType, ULONG BusNumber, U
|
|||
return 0;
|
||||
}
|
||||
|
||||
ULONG WINAPI HalSetBusDataByOffset(BUS_DATA_TYPE BusDataType, ULONG BusNumber, ULONG SlotNumber, PVOID Buffer, ULONG Offset, ULONG Length)
|
||||
{
|
||||
FIXME("(%u %lu %lu %p %lu %lu) stub!\n", BusDataType, BusNumber, SlotNumber, Buffer, Offset, Length);
|
||||
/* Claim that there is no such bus */
|
||||
return 0;
|
||||
}
|
||||
|
||||
BOOLEAN WINAPI HalTranslateBusAddress(INTERFACE_TYPE InterfaceType, ULONG BusNumber, PHYSICAL_ADDRESS BusAddress,
|
||||
PULONG AddressSpace, PPHYSICAL_ADDRESS TranslatedAddress)
|
||||
{
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
@ stub HalRequestIpi
|
||||
@ stub HalReturnToFirmware
|
||||
@ stub HalSetBusData
|
||||
@ stub HalSetBusDataByOffset
|
||||
@ stdcall HalSetBusDataByOffset(long long long ptr long long)
|
||||
@ stub HalSetDisplayParameters
|
||||
@ stub HalSetEnvironmentVariable
|
||||
@ stub HalSetProfileInterval
|
||||
|
|
Loading…
Reference in a new issue