Module: wine Branch: master Commit: c1df11c167346df70bbdbb3e939417ba7ad593f4 URL: https://source.winehq.org/git/wine.git/?a=commit;h=c1df11c167346df70bbdbb3e9...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Jun 11 08:28:37 2019 +0200
mmsystem: Build with msvcrt.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mmsystem.dll16/Makefile.in | 2 +- dlls/mmsystem.dll16/message16.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mmsystem.dll16/Makefile.in b/dlls/mmsystem.dll16/Makefile.in index 1eb0ce9..e1033b4 100644 --- a/dlls/mmsystem.dll16/Makefile.in +++ b/dlls/mmsystem.dll16/Makefile.in @@ -1,7 +1,7 @@ MODULE = mmsystem.dll16 IMPORTS = winmm user32
-EXTRADLLFLAGS = -m16 -Wb,--main-module,winmm.dll +EXTRADLLFLAGS = -m16 -mno-cygwin -Wb,--main-module,winmm.dll
C_SRCS = \ driver.c \ diff --git a/dlls/mmsystem.dll16/message16.c b/dlls/mmsystem.dll16/message16.c index 012d3dc..32c5192 100644 --- a/dlls/mmsystem.dll16/message16.c +++ b/dlls/mmsystem.dll16/message16.c @@ -844,7 +844,7 @@ static LRESULT CALLBACK MMSYSTDRV_Callback3216(struct mmsystdrv_thunk* thunk, HD SetEvent((HANDLE)thunk->callback); break; default: - WARN("Unknown callback type %x\n", thunk->flags & CALLBACK_TYPEMASK); + WARN("Unknown callback type %x\n", thunk->flags); return FALSE; } TRACE("Done\n");