wine/dlls/ntdll/loader.c
2002-01-29 18:30:16 +00:00

12 lines
234 B
C

#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;
}