services: Check for services without lpBinaryPathName in get_winedevice_process.
[wine.git] / dlls / msdelta / msdelta_main.c
blob470b427e8eee946c5f1f839b40b048cc941d763a
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 "config.h"
20 #include <stdarg.h>
22 #include "windef.h"
23 #include "winbase.h"
24 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(msdelta);
28 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
30 TRACE("(%p, %u, %p)\n", instance, reason, reserved);
32 switch (reason)
34 case DLL_WINE_PREATTACH:
35 return FALSE; /* prefer native version */
36 case DLL_PROCESS_ATTACH:
37 DisableThreadLibraryCalls(instance);
38 break;
41 return TRUE;