Commit 4d523238 authored by Alexandre Julliard's avatar Alexandre Julliard

tdh: Use --prefer-native instead of DLL_WINE_PREATTACH.

parent a8aecf94
MODULE = tdh.dll
EXTRADLLFLAGS = -mno-cygwin
EXTRADLLFLAGS = -mno-cygwin -Wb,--prefer-native
C_SRCS = \
tdh_main.c
......
......@@ -27,22 +27,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(tdh);
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void *reserved)
{
TRACE("(%p, %u, %p)\n", instance, reason, reserved);
switch (reason)
{
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(instance);
break;
}
return TRUE;
}
ULONG WINAPI TdhLoadManifest(LPWSTR manifest)
{
FIXME("(%s): stub\n", debugstr_w(manifest));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment