Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 133 of file hnetcfg.c.
{ IClassFactory *cf = NULL; TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv); if (IsEqualGUID( rclsid, &CLSID_NetFwMgr )) { cf = &fw_manager_cf.IClassFactory_iface; } else if (IsEqualGUID( rclsid, &CLSID_NetFwAuthorizedApplication )) { cf = &fw_app_cf.IClassFactory_iface; } if (!cf) return CLASS_E_CLASSNOTAVAILABLE; return IClassFactory_QueryInterface( cf, iid, ppv ); }