12 lines
234 B
C
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;
|
||
|
}
|