Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c307f499
Commit
c307f499
authored
Mar 21, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Added a DLL_WINE_PREATTACH call to DllMain for builtins.
By returning FALSE from this call, a builtin dll can specify that we should try to load the native one instead.
parent
8b3e4268
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
loader.c
dlls/ntdll/loader.c
+13
-3
winnt.h
include/winnt.h
+3
-1
No files found.
dlls/ntdll/loader.c
View file @
c307f499
...
...
@@ -58,7 +58,9 @@ static const char * const reason_names[] =
"PROCESS_DETACH"
,
"PROCESS_ATTACH"
,
"THREAD_ATTACH"
,
"THREAD_DETACH"
"THREAD_DETACH"
,
NULL
,
NULL
,
NULL
,
NULL
,
"WINE_PREATTACH"
};
static
const
WCHAR
dllW
[]
=
{
'.'
,
'd'
,
'l'
,
'l'
,
0
};
...
...
@@ -1749,10 +1751,18 @@ static NTSTATUS load_dll( LPCWSTR load_path, LPCWSTR libname, DWORD flags, WINE_
case
LO_BUILTIN_NATIVE
:
case
LO_DEFAULT
:
/* default is builtin,native */
nts
=
load_builtin_dll
(
load_path
,
filename
,
handle
,
flags
,
pwm
);
if
(
nts
==
STATUS_SUCCESS
)
break
;
if
(
!
handle
)
break
;
/* nothing else we can try */
/* file is not a builtin library, try without using the specified file */
nts
=
load_builtin_dll
(
load_path
,
filename
,
0
,
flags
,
pwm
);
if
(
nts
!=
STATUS_SUCCESS
)
nts
=
load_builtin_dll
(
load_path
,
filename
,
0
,
flags
,
pwm
);
if
(
nts
==
STATUS_SUCCESS
&&
loadorder
==
LO_DEFAULT
&&
!
MODULE_InitDLL
(
*
pwm
,
DLL_WINE_PREATTACH
,
NULL
))
{
/* stub-only dll, try native */
TRACE
(
"%s pre-attach returned FALSE, preferring native
\n
"
,
debugstr_w
(
filename
)
);
LdrUnloadDll
(
(
*
pwm
)
->
ldr
.
BaseAddress
);
nts
=
STATUS_DLL_NOT_FOUND
;
}
if
(
nts
==
STATUS_DLL_NOT_FOUND
&&
loadorder
!=
LO_BUILTIN
)
nts
=
load_native_dll
(
load_path
,
filename
,
handle
,
flags
,
pwm
);
break
;
...
...
include/winnt.h
View file @
c307f499
...
...
@@ -469,7 +469,9 @@ typedef DWORD FLONG;
#define DLL_PROCESS_ATTACH 1
/* attach process (load library) */
#define DLL_THREAD_ATTACH 2
/* attach new thread */
#define DLL_THREAD_DETACH 3
/* detach thread */
#ifdef __WINESRC__
#define DLL_WINE_PREATTACH 8
/* called before process attach for Wine builtins */
#endif
/* u.x.wProcessorArchitecture (NT) */
#define PROCESSOR_ARCHITECTURE_INTEL 0
...
...
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