Sign in
goma
/
wine
/
019ae8a22ff039a9270eeeaaeaac2bcc2d8d807f
/
.
/
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
;
}