Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 484 of file apps.c.
Referenced by fw_profile_get_AuthorizedApplications().
{ fw_apps *fa; TRACE("(%p,%p)\n", pUnkOuter, ppObj); fa = HeapAlloc( GetProcessHeap(), 0, sizeof(*fa) ); if (!fa) return E_OUTOFMEMORY; fa->INetFwAuthorizedApplications_iface.lpVtbl = &fw_apps_vtbl; fa->refs = 1; *ppObj = &fa->INetFwAuthorizedApplications_iface; TRACE("returning iface %p\n", *ppObj); return S_OK; }