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
c845ad88
Commit
c845ad88
authored
Aug 07, 2000
by
Peter Ganten
Committed by
Alexandre Julliard
Aug 07, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LoadLibraryEx32W16 should use the search algorithm of 16-bit libraries.
parent
64c86ffe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
wowthunk.c
dlls/kernel/wowthunk.c
+5
-1
No files found.
dlls/kernel/wowthunk.c
View file @
c845ad88
...
...
@@ -13,6 +13,7 @@
#include "stackframe.h"
#include "builtin16.h"
#include "debugtools.h"
#include "file.h"
DEFAULT_DEBUG_CHANNEL
(
thunk
)
...
...
@@ -295,9 +296,12 @@ DWORD WINAPI GetVDMPointer32W16( SEGPTR vp, UINT16 fMode )
DWORD
WINAPI
LoadLibraryEx32W16
(
LPCSTR
lpszLibFile
,
DWORD
hFile
,
DWORD
dwFlags
)
{
HMODULE
hModule
;
DOS_FULL_NAME
full_name
;
if
(
!
DIR_SearchPath
(
NULL
,
lpszLibFile
,
".DLL"
,
&
full_name
,
FALSE
)
)
return
0
;
SYSLEVEL_ReleaseWin16Lock
();
hModule
=
LoadLibraryExA
(
lpszLibFil
e
,
(
HANDLE
)
hFile
,
dwFlags
);
hModule
=
LoadLibraryExA
(
full_name
.
short_nam
e
,
(
HANDLE
)
hFile
,
dwFlags
);
SYSLEVEL_RestoreWin16Lock
();
return
(
DWORD
)
hModule
;
...
...
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