push bd0608bf727e2241b2885edad5c5c753477ffd22
[wine/hacks.git] / dlls / inetcomm / inetcomm_main.c
blob952efcbb31e75b185e40c053c0c4511765ffe90b
1 /*
2 * Internet Messaging APIs
4 * Copyright 2006 Robert Shearman for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define COBJMACROS
23 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winnt.h"
29 #include "inetcomm_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(inetcomm);
35 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
37 TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
39 switch (fdwReason)
41 case DLL_WINE_PREATTACH:
42 return FALSE;
43 case DLL_PROCESS_ATTACH:
44 DisableThreadLibraryCalls(hinstDLL);
45 if (!InternetTransport_RegisterClass(hinstDLL))
46 return FALSE;
47 break;
48 case DLL_PROCESS_DETACH:
49 InternetTransport_UnregisterClass(hinstDLL);
50 break;
51 default:
52 break;
54 return TRUE;
58 /***********************************************************************
59 * DllGetClassObject (INETCOMM.@)
61 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
63 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
64 return CLASS_E_CLASSNOTAVAILABLE;
67 /***********************************************************************
68 * DllCanUnloadNow (INETCOMM.@)
70 HRESULT WINAPI DllCanUnloadNow(void)
72 FIXME("\n");
73 return S_FALSE;