Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 205 of file updates.c.
{ automatic_updates *updates; TRACE("(%p,%p)\n", pUnkOuter, ppObj); updates = HeapAlloc( GetProcessHeap(), 0, sizeof(*updates) ); if (!updates) return E_OUTOFMEMORY; updates->vtbl = &automatic_updates_vtbl; updates->refs = 1; *ppObj = &updates->vtbl; TRACE("returning iface %p\n", *ppObj); return S_OK; }