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