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
bba5423d
Commit
bba5423d
authored
Aug 29, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uncomment out DisableThreadLibraryCalls in DllMain and add the
kernel32 imports that it requires.
parent
37871ce3
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
19 additions
and
6 deletions
+19
-6
Makefile.in
dlls/dinput8/Makefile.in
+1
-1
Makefile.in
dlls/dplay/Makefile.in
+1
-1
Makefile.in
dlls/newdev/Makefile.in
+1
-0
loader.c
dlls/ntdll/loader.c
+10
-0
Makefile.in
dlls/olepro32/Makefile.in
+1
-1
Makefile.in
dlls/rsabase/Makefile.in
+1
-1
Makefile.in
dlls/shfolder/Makefile.in
+1
-1
Makefile.in
dlls/stdole2.tlb/Makefile.in
+1
-0
Makefile.in
dlls/stdole32.tlb/Makefile.in
+1
-0
dll_main.c
dlls/winecrt0/dll_main.c
+1
-1
No files found.
dlls/dinput8/Makefile.in
View file @
bba5423d
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
dinput8.dll
IMPORTLIB
=
libdinput8.
$(IMPLIBEXT)
IMPORTS
=
dinput
IMPORTS
=
dinput
kernel32
EXTRALIBS
=
-luuid
C_SRCS
=
\
...
...
dlls/dplay/Makefile.in
View file @
bba5423d
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
dplay.dll
IMPORTLIB
=
libdplay.
$(IMPLIBEXT)
IMPORTS
=
dplayx
IMPORTS
=
dplayx
kernel32
C_SRCS
=
dplay_main.c
...
...
dlls/newdev/Makefile.in
View file @
bba5423d
...
...
@@ -4,6 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
newdev.dll
IMPORTLIB
=
libnewdev.
$(IMPLIBEXT)
IMPORTS
=
kernel32
C_SRCS
=
main.c
...
...
dlls/ntdll/loader.c
View file @
bba5423d
...
...
@@ -2088,6 +2088,16 @@ NTSTATUS WINAPI NtUnloadDriver( const UNICODE_STRING *DriverServiceName )
/******************************************************************
* DllMain (NTDLL.@)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
if
(
reason
==
DLL_PROCESS_ATTACH
)
LdrDisableThreadCalloutsForDll
(
inst
);
return
TRUE
;
}
/******************************************************************
* __wine_init_windows_dir (NTDLL.@)
*
* Windows and system dir initialization once kernel32 has been loaded.
...
...
dlls/olepro32/Makefile.in
View file @
bba5423d
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
olepro32.dll
IMPORTLIB
=
libolepro32.
$(IMPLIBEXT)
IMPORTS
=
oleaut32
IMPORTS
=
oleaut32
kernel32
C_SRCS
=
olepro32stubs.c
...
...
dlls/rsabase/Makefile.in
View file @
bba5423d
...
...
@@ -5,7 +5,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
rsabase.dll
IMPORTLIB
=
librsabase.
$(IMPLIBEXT)
IMPORTS
=
rsaenh
IMPORTS
=
rsaenh
kernel32
SUBDIRS
=
tests
...
...
dlls/shfolder/Makefile.in
View file @
bba5423d
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
shfolder.dll
IMPORTLIB
=
libshfolder.
$(IMPLIBEXT)
IMPORTS
=
shell32
IMPORTS
=
shell32
kernel32
C_SRCS
=
shfolder_main.c
...
...
dlls/stdole2.tlb/Makefile.in
View file @
bba5423d
...
...
@@ -3,6 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
stdole2.tlb
IMPORTS
=
kernel32
RC_SRCS
=
rsrc.rc
RC_TLB
=
std_ole_v2.tlb
...
...
dlls/stdole32.tlb/Makefile.in
View file @
bba5423d
...
...
@@ -3,6 +3,7 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
stdole32.tlb
IMPORTS
=
kernel32
RC_SRCS
=
rsrc.rc
RC_TLB
=
std_ole_v1.tlb
...
...
dlls/winecrt0/dll_main.c
View file @
bba5423d
...
...
@@ -24,6 +24,6 @@
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
/* if (reason == DLL_PROCESS_ATTACH) DisableThreadLibraryCalls( inst ); */
if
(
reason
==
DLL_PROCESS_ATTACH
)
DisableThreadLibraryCalls
(
inst
);
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