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
5c06f4e4
Commit
5c06f4e4
authored
Apr 28, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Avoid importing shlwapi.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b743cfe4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/quartz/Makefile.in
+1
-1
filesource.c
dlls/quartz/filesource.c
+1
-2
No files found.
dlls/quartz/Makefile.in
View file @
5c06f4e4
MODULE
=
quartz.dll
IMPORTLIB
=
quartz
IMPORTS
=
strmiids dxguid strmbase uuid dsound msacm32 msvfw32 ole32 oleaut32
shlwapi
rpcrt4 user32 gdi32 advapi32
IMPORTS
=
strmiids dxguid strmbase uuid dsound msacm32 msvfw32 ole32 oleaut32 rpcrt4 user32 gdi32 advapi32
C_SRCS
=
\
acmwrapper.c
\
...
...
dlls/quartz/filesource.c
View file @
5c06f4e4
...
...
@@ -100,8 +100,7 @@ static HRESULT process_extensions(HKEY hkeyExtensions, LPCOLESTR pszFileName, GU
return
E_POINTER
;
/* Get the part of the name that matters */
extension
=
PathFindExtensionW
(
pszFileName
);
if
(
*
extension
!=
'.'
)
if
(
!
(
extension
=
strrchrW
(
pszFileName
,
'.'
)))
return
E_FAIL
;
l
=
RegOpenKeyExW
(
hkeyExtensions
,
extension
,
0
,
KEY_READ
,
&
hsub
);
...
...
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