mciseq: Build with msvcrt.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
106f2feafa
commit
8ce096a9f0
|
@ -1,5 +1,7 @@
|
|||
MODULE = mciseq.dll
|
||||
IMPORTS = winmm user32
|
||||
|
||||
EXTRADLLFLAGS = -mno-cygwin
|
||||
|
||||
C_SRCS = \
|
||||
mcimidi.c
|
||||
|
|
|
@ -32,12 +32,12 @@
|
|||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winnls.h"
|
||||
#include "wingdi.h"
|
||||
#include "winuser.h"
|
||||
#include "wownt32.h"
|
||||
#include "mmddk.h"
|
||||
#include "wine/debug.h"
|
||||
#include "wine/unicode.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mcimidi);
|
||||
|
||||
|
@ -692,8 +692,8 @@ static DWORD MIDI_mciOpen(WINE_MCIMIDI* wmm, DWORD dwFlags, LPMCI_OPEN_PARMSW lp
|
|||
return MCIERR_FILE_NOT_FOUND;
|
||||
}
|
||||
wmm->lpstrElementName = HeapAlloc(GetProcessHeap(), 0,
|
||||
(strlenW(lpParms->lpstrElementName) + 1) * sizeof(WCHAR));
|
||||
strcpyW(wmm->lpstrElementName, lpParms->lpstrElementName);
|
||||
(lstrlenW(lpParms->lpstrElementName) + 1) * sizeof(WCHAR));
|
||||
lstrcpyW(wmm->lpstrElementName, lpParms->lpstrElementName);
|
||||
}
|
||||
}
|
||||
TRACE("hFile=%p\n", wmm->hFile);
|
||||
|
|
Loading…
Reference in New Issue