Added LdrDisableThreadCalloutsForDll.
[wine] / dlls / ntdll / loader.c
1 #include "winbase.h"
2 #include "ntdef.h"
3 #include "winnt.h"
4
5 NTSTATUS WINAPI LdrDisableThreadCalloutsForDll(HANDLE hModule)
6 {
7     if (DisableThreadLibraryCalls(hModule))
8         return STATUS_SUCCESS;
9     else
10         return STATUS_DLL_NOT_FOUND;
11 }