Commit 9087404a authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

hal: Add WRITE_PORT_UCHAR stub.

parent 738e17b2
......@@ -168,6 +168,11 @@ ULONG WINAPI READ_PORT_ULONG(ULONG *port)
return 0;
}
void WINAPI WRITE_PORT_UCHAR(UCHAR *port, UCHAR value)
{
FIXME("(%p %d) stub!\n", port, value);
}
void WINAPI WRITE_PORT_ULONG(ULONG *port, ULONG value)
{
FIXME("(%p %d) stub!\n", port, value);
......
......@@ -87,6 +87,6 @@
@ stub WRITE_PORT_BUFFER_UCHAR
@ stub WRITE_PORT_BUFFER_ULONG
@ stub WRITE_PORT_BUFFER_USHORT
@ stub WRITE_PORT_UCHAR
@ stdcall WRITE_PORT_UCHAR(ptr long)
@ stdcall WRITE_PORT_ULONG(ptr long)
@ stub WRITE_PORT_USHORT
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