Sign in
goma
/
wine
/
9ce993206d7a28c62365bcad890f6d385c9173f5
/
.
/
dlls
/
ntdll
/
loader.c
blob: d609d3ad6019707e85ac96a9902d04aeb81a5b18 [
file
] [
log
] [
blame
]
#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
;
}