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
937f4d3e
Commit
937f4d3e
authored
Dec 05, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Dec 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added USER.DllEntryPoint().
parent
979000e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
user.spec
if1632/user.spec
+1
-0
user.c
windows/user.c
+22
-0
No files found.
if1632/user.spec
View file @
937f4d3e
...
...
@@ -349,6 +349,7 @@ file user.exe
371 pascal16 SetWindowPlacement(word ptr) SetWindowPlacement16
372 stub GetInternalIconHeader
373 pascal16 SubtractRect(ptr ptr ptr) SubtractRect16
374 pascal DllEntryPoint(long word word word long word) USER_DllEntryPoint
375 stub DrawTextEx
376 stub SetMessageExtraInfo
378 stub SetPropEx
...
...
windows/user.c
View file @
937f4d3e
...
...
@@ -258,6 +258,28 @@ WORD WINAPI UserSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
return
0
;
}
/***********************************************************************
* USER_DllEntryPoint (USER.374)
*/
BOOL
WINAPI
USER_DllEntryPoint
(
DWORD
dwReason
,
HINSTANCE
hInstDLL
,
WORD
ds
,
WORD
wHeapSize
,
DWORD
dwReserved1
,
WORD
wReserved2
)
{
switch
(
dwReason
)
{
case
DLL_PROCESS_ATTACH
:
/*
* We need to load the 32-bit library so as to be able
* to access the system resources stored there!
*/
if
(
!
LoadLibraryA
(
"USER32.DLL"
)
)
{
ERR_
(
win
)(
"Could not load USER32.DLL
\n
"
);
return
FALSE
;
}
}
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