Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
1e55094e
Commit
1e55094e
authored
23 years ago
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added LdrDisableThreadCalloutsForDll.
parent
e1ff66a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/ntdll/Makefile.in
+1
-0
1 addition, 0 deletions
dlls/ntdll/Makefile.in
dlls/ntdll/loader.c
+11
-0
11 additions, 0 deletions
dlls/ntdll/loader.c
dlls/ntdll/ntdll.spec
+3
-1
3 additions, 1 deletion
dlls/ntdll/ntdll.spec
with
15 additions
and
1 deletion
dlls/ntdll/Makefile.in
+
1
−
0
View file @
1e55094e
...
...
@@ -14,6 +14,7 @@ C_SRCS = \
file.c
\
heap.c
\
large_int.c
\
loader.c
\
misc.c
\
nt.c
\
om.c
\
...
...
This diff is collapsed.
Click to expand it.
dlls/ntdll/loader.c
0 → 100644
+
11
−
0
View file @
1e55094e
#include
"winbase.h"
#include
"ntdef.h"
#include
"winnt.h"
NTSTATUS
WINAPI
LdrDisableThreadCalloutsForDll
(
HANDLE
hModule
)
{
if
(
DisableThreadLibraryCalls
(
hModule
))
return
STATUS_SUCCESS
;
else
return
STATUS_DLL_NOT_FOUND
;
}
This diff is collapsed.
Click to expand it.
dlls/ntdll/ntdll.spec
+
3
−
1
View file @
1e55094e
...
...
@@ -43,7 +43,7 @@ debug_channels (atom cdrom console debug delayhlp dll dosfs dosmem file fixup
@ stub KiUserCallbackDispatcher
@ stub KiUserExceptionDispatcher
@ stub LdrAccessResource
@ st
ub
LdrDisableThreadCalloutsForDll
@ st
dcall LdrDisableThreadCalloutsForDll(long)
LdrDisableThreadCalloutsForDll
@ stub LdrEnumResources
@ stub LdrFindEntryForAddress
@ stub LdrFindResourceDirectory_U
...
...
@@ -394,6 +394,7 @@ debug_channels (atom cdrom console debug delayhlp dll dosfs dosmem file fixup
@ stdcall RtlFreeUnicodeString(ptr) RtlFreeUnicodeString
@ stub RtlGenerate8dot3Name
@ stdcall RtlGetAce(ptr long ptr) RtlGetAce
@ stub RtlGetVersion
@ stub RtlGetCallersAddress
@ stub RtlGetCompressionWorkSpaceSize
@ stdcall RtlGetControlSecurityDescriptor(ptr ptr ptr) RtlGetControlSecurityDescriptor
...
...
@@ -511,6 +512,7 @@ debug_channels (atom cdrom console debug delayhlp dll dosfs dosmem file fixup
@ stdcall RtlSizeHeap(long long ptr) RtlSizeHeap
@ stub RtlSplay
@ stub RtlStartRXact
@ stub RtlStringFromGUID
@ stdcall RtlSubAuthorityCountSid(ptr) RtlSubAuthorityCountSid
@ stdcall RtlSubAuthoritySid(ptr long) RtlSubAuthoritySid
@ stub RtlSubtreePredecessor
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment