Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 163 of file addresseditbox.cpp.
{ CComObject<CAddressEditBox> *theMenuBar; HRESULT hResult; if (ppv == NULL) return E_POINTER; *ppv = NULL; ATLTRY (theMenuBar = new CComObject<CAddressEditBox>); if (theMenuBar == NULL) return E_OUTOFMEMORY; hResult = theMenuBar->QueryInterface (riid, (void **)ppv); if (FAILED (hResult)) { delete theMenuBar; return hResult; } return S_OK; }