ntdll: Translate signal to trap when trap code is 0 on ARM.
[wine.git] / dlls / hnetcfg / hnetcfg.c
blob5cc24a1447bdb874fb3a30f9f4cecb840b99ccd7
1 /*
2 * Copyright (C) 2007 Jeff Latimer
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #define COBJMACROS
23 #include "windef.h"
24 #include "winbase.h"
25 #include "objbase.h"
26 #include "rpcproxy.h"
27 #include "netfw.h"
28 #include "natupnp.h"
30 #include "wine/debug.h"
31 #include "hnetcfg_private.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(hnetcfg);
35 static HINSTANCE instance;
37 typedef HRESULT (*fnCreateInstance)( IUnknown *pUnkOuter, LPVOID *ppObj );
39 typedef struct
41 IClassFactory IClassFactory_iface;
42 fnCreateInstance pfnCreateInstance;
43 } hnetcfg_cf;
45 static inline hnetcfg_cf *impl_from_IClassFactory( IClassFactory *iface )
47 return CONTAINING_RECORD(iface, hnetcfg_cf, IClassFactory_iface);
50 static HRESULT WINAPI hnetcfg_cf_QueryInterface( IClassFactory *iface, REFIID riid, LPVOID *ppobj )
52 if (IsEqualGUID(riid, &IID_IUnknown) ||
53 IsEqualGUID(riid, &IID_IClassFactory))
55 IClassFactory_AddRef( iface );
56 *ppobj = iface;
57 return S_OK;
59 FIXME("interface %s not implemented\n", debugstr_guid(riid));
60 return E_NOINTERFACE;
63 static ULONG WINAPI hnetcfg_cf_AddRef( IClassFactory *iface )
65 return 2;
68 static ULONG WINAPI hnetcfg_cf_Release( IClassFactory *iface )
70 return 1;
73 static HRESULT WINAPI hnetcfg_cf_CreateInstance( IClassFactory *iface, LPUNKNOWN pOuter,
74 REFIID riid, LPVOID *ppobj )
76 hnetcfg_cf *This = impl_from_IClassFactory( iface );
77 HRESULT r;
78 IUnknown *punk;
80 TRACE("%p %s %p\n", pOuter, debugstr_guid(riid), ppobj);
82 *ppobj = NULL;
84 if (pOuter)
85 return CLASS_E_NOAGGREGATION;
87 r = This->pfnCreateInstance( pOuter, (LPVOID *)&punk );
88 if (FAILED(r))
89 return r;
91 r = IUnknown_QueryInterface( punk, riid, ppobj );
92 if (FAILED(r))
93 return r;
95 IUnknown_Release( punk );
96 return r;
99 static HRESULT WINAPI hnetcfg_cf_LockServer( IClassFactory *iface, BOOL dolock )
101 FIXME("(%p)->(%d)\n", iface, dolock);
102 return S_OK;
105 static const struct IClassFactoryVtbl hnetcfg_cf_vtbl =
107 hnetcfg_cf_QueryInterface,
108 hnetcfg_cf_AddRef,
109 hnetcfg_cf_Release,
110 hnetcfg_cf_CreateInstance,
111 hnetcfg_cf_LockServer
114 static hnetcfg_cf fw_manager_cf = { { &hnetcfg_cf_vtbl }, NetFwMgr_create };
115 static hnetcfg_cf fw_app_cf = { { &hnetcfg_cf_vtbl }, NetFwAuthorizedApplication_create };
116 static hnetcfg_cf fw_openport_cf = { { &hnetcfg_cf_vtbl }, NetFwOpenPort_create };
117 static hnetcfg_cf fw_policy2_cf = { { &hnetcfg_cf_vtbl }, NetFwPolicy2_create };
118 static hnetcfg_cf upnpnat_cf = { { &hnetcfg_cf_vtbl }, IUPnPNAT_create };
121 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID reserved)
123 TRACE("(0x%p, %d, %p)\n", hInstDLL, fdwReason, reserved);
125 switch(fdwReason) {
126 case DLL_WINE_PREATTACH:
127 return FALSE;
128 case DLL_PROCESS_ATTACH:
129 instance = hInstDLL;
130 DisableThreadLibraryCalls(hInstDLL);
131 break;
132 case DLL_PROCESS_DETACH:
133 if (reserved) break;
134 release_typelib();
135 break;
137 return TRUE;
140 HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID iid, LPVOID *ppv )
142 IClassFactory *cf = NULL;
144 TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
146 if (IsEqualGUID( rclsid, &CLSID_NetFwMgr ))
148 cf = &fw_manager_cf.IClassFactory_iface;
150 else if (IsEqualGUID( rclsid, &CLSID_NetFwAuthorizedApplication ))
152 cf = &fw_app_cf.IClassFactory_iface;
154 else if (IsEqualGUID( rclsid, &CLSID_NetFwOpenPort ))
156 cf = &fw_openport_cf.IClassFactory_iface;
158 else if (IsEqualGUID( rclsid, &CLSID_NetFwPolicy2 ))
160 cf = &fw_policy2_cf.IClassFactory_iface;
162 else if (IsEqualGUID( rclsid, &CLSID_UPnPNAT ))
164 cf = &upnpnat_cf.IClassFactory_iface;
167 if (!cf) return CLASS_E_CLASSNOTAVAILABLE;
168 return IClassFactory_QueryInterface( cf, iid, ppv );
171 HRESULT WINAPI DllCanUnloadNow( void )
173 return S_FALSE;
176 /***********************************************************************
177 * DllRegisterServer (HNETCFG.@)
179 HRESULT WINAPI DllRegisterServer(void)
181 return __wine_register_resources( instance );
184 /***********************************************************************
185 * DllUnregisterServer (HNETCFG.@)
187 HRESULT WINAPI DllUnregisterServer(void)
189 return __wine_unregister_resources( instance );