hal: Add READ_PORT_UCHAR stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1dc0669894
commit
d830f50883
|
@ -156,6 +156,12 @@ KIRQL WINAPI KeGetCurrentIrql(VOID)
|
|||
return 0;
|
||||
}
|
||||
|
||||
UCHAR WINAPI READ_PORT_UCHAR(UCHAR *port)
|
||||
{
|
||||
FIXME("(%p) stub!\n", port);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ULONG WINAPI READ_PORT_ULONG(ULONG *port)
|
||||
{
|
||||
FIXME("(%p) stub!\n", port);
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
@ stub READ_PORT_BUFFER_UCHAR
|
||||
@ stub READ_PORT_BUFFER_ULONG
|
||||
@ stub READ_PORT_BUFFER_USHORT
|
||||
@ stub READ_PORT_UCHAR
|
||||
@ stdcall READ_PORT_UCHAR(ptr)
|
||||
@ stdcall READ_PORT_ULONG(ptr)
|
||||
@ stub READ_PORT_USHORT
|
||||
@ stub WRITE_PORT_BUFFER_UCHAR
|
||||
|
|
Loading…
Reference in New Issue