Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 481 of file addressband.cpp.
Referenced by CInternetToolbar::CreateAddressBand(), and CInternetToolbar::InitNew().
{ CComObject<CAddressBand> *theMenuBar; HRESULT hResult; if (ppv == NULL) return E_POINTER; *ppv = NULL; ATLTRY (theMenuBar = new CComObject<CAddressBand>); if (theMenuBar == NULL) return E_OUTOFMEMORY; hResult = theMenuBar->QueryInterface (riid, (void **)ppv); if (FAILED (hResult)) { delete theMenuBar; return hResult; } return S_OK; }