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
65064b9d
Commit
65064b9d
authored
Nov 15, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Nov 15, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LoadLibraryEx: show a warning when called with unimplemented parm.
parent
6da20b9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
module.c
loader/module.c
+7
-1
No files found.
loader/module.c
View file @
65064b9d
...
...
@@ -794,8 +794,14 @@ HMODULE32 WINAPI LoadLibraryEx32A(LPCSTR libname,HFILE32 hfile,DWORD flags)
HMODULE32
hmod
;
hmod
=
MODULE_LoadLibraryEx32A
(
libname
,
PROCESS_Current
(),
hfile
,
flags
);
/* at least call not the dllmain...*/
if
(
DONT_RESOLVE_DLL_REFERENCES
==
flags
||
LOAD_LIBRARY_AS_DATAFILE
==
flags
)
{
FIXME
(
module
,
"flag not properly supported %lx
\n
"
,
flags
);
return
hmod
;
}
/* initialize DLL just loaded */
if
(
hmod
>=
32
)
if
(
hmod
>=
32
)
MODULE_InitializeDLLs
(
PROCESS_Current
(),
hmod
,
DLL_PROCESS_ATTACH
,
(
LPVOID
)
-
1
);
...
...
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