comctl32: Remove the masked background when 32bpp bitmaps have no alpha values.
[wine.git] / dlls / msdelta / msdelta_main.c
blob5ae82061bd601c5c7d77a05900b543301546a8f5
1 /* Copyright 2015 Andrew Eikum for CodeWeavers
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #include <stdarg.h>
20 #include "windef.h"
21 #include "winbase.h"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(msdelta);
26 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
28 TRACE("(%p, %u, %p)\n", instance, reason, reserved);
30 switch (reason)
32 case DLL_WINE_PREATTACH:
33 return FALSE; /* prefer native version */
34 case DLL_PROCESS_ATTACH:
35 DisableThreadLibraryCalls(instance);
36 break;
39 return TRUE;