mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 05:11:57 +00:00
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;
|
|
}
|