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
ee7bba6a
Commit
ee7bba6a
authored
Nov 26, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qcap: Build with msvcrt.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
786d81d8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
Makefile.in
dlls/qcap/Makefile.in
+2
-0
filewriter.c
dlls/qcap/filewriter.c
+2
-2
qcap_private.h
dlls/qcap/qcap_private.h
+0
-1
No files found.
dlls/qcap/Makefile.in
View file @
ee7bba6a
...
...
@@ -3,6 +3,8 @@ IMPORTS = strmiids uuid ole32 oleaut32 gdi32 advapi32
DELAYIMPORTS
=
msvfw32
PARENTSRC
=
../strmbase
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
audiorecord.c
\
avico.c
\
...
...
dlls/qcap/filewriter.c
View file @
ee7bba6a
...
...
@@ -245,9 +245,9 @@ static HRESULT WINAPI filesinkfilter_SetFileName(IFileSinkFilter *iface,
if
(
mt
)
FIXME
(
"Ignoring media type %p.
\n
"
,
mt
);
if
(
!
(
new_filename
=
heap_alloc
((
strlenW
(
filename
)
+
1
)
*
sizeof
(
WCHAR
))))
if
(
!
(
new_filename
=
heap_alloc
((
wcslen
(
filename
)
+
1
)
*
sizeof
(
WCHAR
))))
return
E_OUTOFMEMORY
;
strcpyW
(
new_filename
,
filename
);
wcscpy
(
new_filename
,
filename
);
heap_free
(
filter
->
filename
);
filter
->
filename
=
new_filename
;
...
...
dlls/qcap/qcap_private.h
View file @
ee7bba6a
...
...
@@ -28,7 +28,6 @@
#include "wine/debug.h"
#include "wine/heap.h"
#include "wine/strmbase.h"
#include "wine/unicode.h"
extern
HINSTANCE
qcap_instance
DECLSPEC_HIDDEN
;
...
...
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