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
cdf1e763
Commit
cdf1e763
authored
May 28, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avifil32: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bc27abc1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/avifil32/Makefile.in
+2
-0
api.c
dlls/avifil32/api.c
+1
-2
avifile.c
dlls/avifil32/avifile.c
+1
-2
wavfile.c
dlls/avifil32/wavfile.c
+1
-2
No files found.
dlls/avifil32/Makefile.in
View file @
cdf1e763
...
...
@@ -2,6 +2,8 @@ MODULE = avifil32.dll
IMPORTLIB
=
avifil32
IMPORTS
=
uuid msacm32 msvfw32 winmm ole32 user32 advapi32 rpcrt4
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
acmstream.c
\
api.c
\
...
...
dlls/avifil32/api.c
View file @
cdf1e763
...
...
@@ -38,7 +38,6 @@
#include "avifile_private.h"
#include "wine/debug.h"
#include "wine/unicode.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
avifile
);
...
...
@@ -155,7 +154,7 @@ static BOOL AVIFILE_GetFileHandlerByExtension(LPCWSTR szFile, LPCLSID lpclsid)
{
CHAR
szRegKey
[
25
];
CHAR
szValue
[
100
];
LPWSTR
szExt
=
strrchrW
(
szFile
,
'.'
);
LPWSTR
szExt
=
wcsrchr
(
szFile
,
'.'
);
LONG
len
=
ARRAY_SIZE
(
szValue
);
if
(
szExt
==
NULL
)
...
...
dlls/avifil32/avifile.c
View file @
cdf1e763
...
...
@@ -46,7 +46,6 @@
#include "avifile_private.h"
#include "extrachunk.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
avifile
);
...
...
@@ -625,7 +624,7 @@ static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile *iface, LPOLESTR *p
if
(
*
ppszFileName
==
NULL
)
return
AVIERR_MEMORY
;
strcpyW
(
*
ppszFileName
,
This
->
szFileName
);
l
strcpyW
(
*
ppszFileName
,
This
->
szFileName
);
}
return
AVIERR_OK
;
...
...
dlls/avifil32/wavfile.c
View file @
cdf1e763
...
...
@@ -33,7 +33,6 @@
#include "avifile_private.h"
#include "extrachunk.h"
#include "wine/unicode.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
avifile
);
...
...
@@ -575,7 +574,7 @@ static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile *iface, LPOLESTR *p
if
(
*
ppszFileName
==
NULL
)
return
AVIERR_MEMORY
;
strcpyW
(
*
ppszFileName
,
This
->
szFileName
);
l
strcpyW
(
*
ppszFileName
,
This
->
szFileName
);
}
return
AVIERR_OK
;
...
...
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