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
3e80b93f
Commit
3e80b93f
authored
Jun 03, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
63360ad4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/dsound/Makefile.in
+2
-0
dsound_convert.c
dlls/dsound/dsound_convert.c
+0
-2
dsound_private.h
dlls/dsound/dsound_private.h
+1
-2
No files found.
dlls/dsound/Makefile.in
View file @
3e80b93f
...
...
@@ -2,6 +2,8 @@ MODULE = dsound.dll
IMPORTLIB
=
dsound
IMPORTS
=
dxguid uuid winmm ole32 advapi32 user32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
buffer.c
\
capture.c
\
...
...
dlls/dsound/dsound_convert.c
View file @
3e80b93f
...
...
@@ -34,8 +34,6 @@
* Sound is LITTLE endian
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <math.h>
...
...
dlls/dsound/dsound_private.h
View file @
3e80b93f
...
...
@@ -31,7 +31,6 @@
#include "uuids.h"
#include "wine/list.h"
#include "wine/unicode.h"
#define DS_MAX_CHANNELS 6
...
...
@@ -272,7 +271,7 @@ static inline WCHAR *strdupW( const WCHAR *str )
WCHAR
*
ret
;
if
(
!
str
)
return
NULL
;
size
=
(
strlenW
(
str
)
+
1
)
*
sizeof
(
WCHAR
);
size
=
(
l
strlenW
(
str
)
+
1
)
*
sizeof
(
WCHAR
);
ret
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
ret
)
memcpy
(
ret
,
str
,
size
);
return
ret
;
...
...
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