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
dc382414
Commit
dc382414
authored
Feb 26, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
evr: Use --prefer-native instead of DLL_WINE_PREATTACH.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5edf6d15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
Makefile.in
dlls/evr/Makefile.in
+1
-1
main.c
dlls/evr/main.c
+6
-7
No files found.
dlls/evr/Makefile.in
View file @
dc382414
...
...
@@ -3,7 +3,7 @@ IMPORTLIB = evr
IMPORTS
=
mfuuid strmiids strmbase uuid dxguid ole32 oleaut32 user32 d3d9 dxva2
DELAYIMPORTS
=
mfplat
EXTRADLLFLAGS
=
-mno-cygwin
EXTRADLLFLAGS
=
-mno-cygwin
-Wb
,--prefer-native
C_SRCS
=
\
evr.c
\
...
...
dlls/evr/main.c
View file @
dc382414
...
...
@@ -36,16 +36,15 @@ static HINSTANCE instance_evr;
BOOL
WINAPI
DllMain
(
HINSTANCE
instance
,
DWORD
reason
,
LPVOID
reserved
)
{
if
(
reason
==
DLL_WINE_PREATTACH
)
return
FALSE
;
/* prefer native version */
else
if
(
reason
==
DLL_PROCESS_ATTACH
)
switch
(
reason
)
{
instance_evr
=
instance
;
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
instance
);
}
else
if
(
reason
==
DLL_PROCESS_DETACH
&&
!
reserved
)
{
break
;
case
DLL_PROCESS_DETACH
:
if
(
reserved
)
break
;
strmbase_release_typelibs
();
break
;
}
return
TRUE
;
}
...
...
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