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
1c73771f
Commit
1c73771f
authored
Oct 10, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the standard DllMain entry point.
parent
313661d1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/user/Makefile.in
+0
-1
user32.spec
dlls/user/user32.spec
+1
-1
user_main.c
dlls/user/user_main.c
+2
-2
No files found.
dlls/user/Makefile.in
View file @
1c73771f
...
...
@@ -7,7 +7,6 @@ MODULE = user32.dll
IMPORTS
=
gdi32 advapi32 kernel32 ntdll
ALTNAMES
=
user.exe ddeml.dll display.drv keyboard.drv mouse.drv
EXTRALIBS
=
$(LIBUNICODE)
DLLMAIN
=
UserClientDllInitialize@12
LDDLLFLAGS
=
@LDDLLFLAGS@
SYMBOLFILE
=
$(MODULE)
.tmp.o
...
...
dlls/user/user32.spec
View file @
1c73771f
...
...
@@ -599,7 +599,7 @@
@ stdcall UnregisterHotKey(long long)
@ stub UpdatePerUserSystemParameters
@ stdcall UpdateWindow(long)
@ stdcall UserClientDllInitialize(long long ptr)
@ stdcall UserClientDllInitialize(long long ptr)
DllMain
# @ stub UserIsSystemResumeAutomatic
# @ stub UserSetDeviceHoldState
@ stub UserHandleGrantAccess
...
...
dlls/user/user_main.c
View file @
1c73771f
...
...
@@ -291,9 +291,9 @@ static void thread_detach(void)
/***********************************************************************
* UserClientDllInitialize (USER32.@)
*
* USER dll initialisation routine
* USER dll initialisation routine
(exported as UserClientDllInitialize for compatibility).
*/
BOOL
WINAPI
UserClientDllInitialize
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
BOOL
ret
=
TRUE
;
switch
(
reason
)
...
...
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