Sweden-Number/dlls/ntdll/loader.c

12 lines
234 B
C
Raw Normal View History

2002-01-29 19:30:16 +01:00
#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;
}