From: Austin English Subject: hal: add READ_PORT_ULONG stub Message-Id: Date: Tue, 22 Dec 2015 19:36:23 -0600 Should fix https://bugs.winehq.org/show_bug.cgi?id=28082, but I wasn't able to reproduce the original issue myself. -- -Austin From 6205a25b5031d40c6505d78795a5eb7bcac95eea Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 22 Dec 2015 19:35:00 -0600 Subject: [PATCH] hal: add READ_PORT_ULONG stub Signed-off-by: Austin English --- dlls/hal/hal.c | 6 ++++++ dlls/hal/hal.spec | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c index 96bc895..681bf5b 100644 --- a/dlls/hal/hal.c +++ b/dlls/hal/hal.c @@ -155,3 +155,9 @@ KIRQL WINAPI KeGetCurrentIrql(VOID) FIXME( " stub!\n"); return 0; } + +ULONG WINAPI READ_PORT_ULONG(ULONG *Port) +{ + FIXME("(%p) stub!\n", Port); + return 0; +} diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec index 3046c65..02f778c 100644 --- a/dlls/hal/hal.spec +++ b/dlls/hal/hal.spec @@ -82,7 +82,7 @@ @ stub READ_PORT_BUFFER_ULONG @ stub READ_PORT_BUFFER_USHORT @ stub READ_PORT_UCHAR -@ stub READ_PORT_ULONG +@ stdcall READ_PORT_ULONG(ptr) @ stub READ_PORT_USHORT @ stub WRITE_PORT_BUFFER_UCHAR @ stub WRITE_PORT_BUFFER_ULONG -- 2.6.4