This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch stretch in repository wine.
commit f3c399fb70513b287b041608462119af5c82eb52 Author: Austin English <[email protected]> Date: Mon Apr 25 23:47:05 2016 -0500 hal: Add READ_PORT_UCHAR stub. Signed-off-by: Austin English <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> (cherry picked from commit d830f508834c2d55c0a58a2340f9585863425193) Signed-off-by: Michael Stefaniuc <[email protected]> --- 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 bca688e..79bbfed 100644 --- a/dlls/hal/hal.c +++ b/dlls/hal/hal.c @@ -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); diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec index 02f778c..071eba5 100644 --- a/dlls/hal/hal.spec +++ b/dlls/hal/hal.spec @@ -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 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
