Exemplo n.º 1
0
    STDMETHODIMP COATR::get_History(BSTR *pHistory)
    { HRESULT hr = NOERROR;
    
      if( NULL==pHistory )
        hr = E_POINTER;
      else
      { ByteBuffer h;
        
        m_atr.GetHistory(h);

        h.GetBSTR(pHistory);
      } // of else
    
      return hr;
    } // of COATR::get_History()