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
1e55094e
Commit
1e55094e
authored
Jan 29, 2002
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added LdrDisableThreadCalloutsForDll.
parent
e1ff66a8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
Makefile.in
dlls/ntdll/Makefile.in
+1
-0
loader.c
dlls/ntdll/loader.c
+11
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+3
-1
No files found.
dlls/ntdll/Makefile.in
View file @
1e55094e
...
...
@@ -14,6 +14,7 @@ C_SRCS = \
file.c
\
heap.c
\
large_int.c
\
loader.c
\
misc.c
\
nt.c
\
om.c
\
...
...
dlls/ntdll/loader.c
0 → 100644
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
;
}
dlls/ntdll/ntdll.spec
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
...
...
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