Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f09c0e7c
Commit
f09c0e7c
authored
Jul 02, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm: Build with msvcrt.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f277ef7e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
17 deletions
+4
-17
Makefile.in
dlls/winmm/Makefile.in
+2
-0
driver.c
dlls/winmm/driver.c
+1
-5
joystick.c
dlls/winmm/joystick.c
+0
-8
lolvldrv.c
dlls/winmm/lolvldrv.c
+0
-3
mci.c
dlls/winmm/mci.c
+0
-0
waveform.c
dlls/winmm/waveform.c
+1
-1
No files found.
dlls/winmm/Makefile.in
View file @
f09c0e7c
...
...
@@ -3,6 +3,8 @@ MODULE = winmm.dll
IMPORTLIB
=
winmm
IMPORTS
=
uuid user32 advapi32 ole32 msacm32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
driver.c
\
joystick.c
\
...
...
dlls/winmm/driver.c
View file @
f09c0e7c
...
...
@@ -20,9 +20,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <string.h>
#include <stdarg.h>
#include "windef.h"
...
...
@@ -34,7 +31,6 @@
#include "mmddk.h"
#include "winemm.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "excpt.h"
#include "wine/exception.h"
...
...
@@ -287,7 +283,7 @@ LPWINE_DRIVER DRIVER_TryOpenDriver32(LPCWSTR fn, LPARAM lParam2)
TRACE
(
"(%s, %08lX);
\n
"
,
debugstr_w
(
fn
),
lParam2
);
if
((
ptr
=
strchrW
(
fn
,
' '
))
!=
NULL
)
{
if
((
ptr
=
wcschr
(
fn
,
' '
))
!=
NULL
)
{
*
ptr
++
=
'\0'
;
while
(
*
ptr
==
' '
)
ptr
++
;
if
(
*
ptr
==
'\0'
)
ptr
=
NULL
;
...
...
dlls/winmm/joystick.c
View file @
f09c0e7c
...
...
@@ -21,19 +21,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
dlls/winmm/lolvldrv.c
View file @
f09c0e7c
...
...
@@ -20,9 +20,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#define NONAMELESSUNION
#define COBJMACROS
...
...
dlls/winmm/mci.c
View file @
f09c0e7c
This diff is collapsed.
Click to expand it.
dlls/winmm/waveform.c
View file @
f09c0e7c
...
...
@@ -674,7 +674,7 @@ static HRESULT update_mapping(WINMM_MMDevice ***map, UINT count,
for
(
i
=
0
;
i
<
count
;
++
i
){
WINMM_MMDevice
*
tmp
;
if
(
!
lstrcmpW
((
*
map
)[
i
]
->
dev_id
,
default_id
)){
if
(
!
wcscmp
((
*
map
)[
i
]
->
dev_id
,
default_id
)){
(
*
map
)[
0
]
=
(
*
map
)[
i
];
(
*
map
)[
i
]
=
prev
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment