This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch stretch in repository wine.
commit 80d396530adb92e32a14076f4a29ce3008ca334e Author: Austin English <[email protected]> Date: Mon Apr 25 23:47:28 2016 -0500 hal: Add WRITE_PORT_ULONG stub. Signed-off-by: Austin English <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> (cherry picked from commit e507e59bce09ff1041571defbba4d1e3d6bf5160) Signed-off-by: Michael Stefaniuc <[email protected]> --- dlls/hal/hal.c | 5 +++++ dlls/hal/hal.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/hal/hal.c b/dlls/hal/hal.c index 79bbfed..0b2e422 100644 --- a/dlls/hal/hal.c +++ b/dlls/hal/hal.c @@ -167,3 +167,8 @@ ULONG WINAPI READ_PORT_ULONG(ULONG *port) FIXME("(%p) stub!\n", port); return 0; } + +void WINAPI WRITE_PORT_ULONG(ULONG *port, ULONG value) +{ + FIXME("(%p %d) stub!\n", port, value); +} diff --git a/dlls/hal/hal.spec b/dlls/hal/hal.spec index 071eba5..c21806c 100644 --- a/dlls/hal/hal.spec +++ b/dlls/hal/hal.spec @@ -88,5 +88,5 @@ @ stub WRITE_PORT_BUFFER_ULONG @ stub WRITE_PORT_BUFFER_USHORT @ stub WRITE_PORT_UCHAR -@ stub WRITE_PORT_ULONG +@ stdcall WRITE_PORT_ULONG(ptr long) @ stub WRITE_PORT_USHORT -- 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
