Commit a3ab118b authored by Alexandre Julliard's avatar Alexandre Julliard

d3d10core: Remove unnecessary DllMain implementation.

parent ddfaafc1
......@@ -25,18 +25,6 @@
WINE_DEFAULT_DEBUG_CHANNEL(d3d10core);
BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, void *reserved)
{
switch (reason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(inst);
break;
}
return TRUE;
}
static HRESULT WINAPI layer_init(enum dxgi_device_layer_id id, DWORD *count, DWORD *values)
{
TRACE("id %#x, count %p, values %p\n", id, count, values);
......
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