Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
506 B

  1. // IBusuInfo.cpp : Implementation of CBusuInfo
  2. #include "stdafx.h"
  3. #include "HjDict.h"
  4. #include "IBusuInfo.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CBusuInfo
  7. STDMETHODIMP CBusuInfo::get_Busu(long *pVal)
  8. {
  9. *pVal = (long)m_wchBusu;
  10. return S_OK;
  11. }
  12. STDMETHODIMP CBusuInfo::get_BusuDesc(BSTR *pVal)
  13. {
  14. *pVal = m_bstrDesc.Copy();
  15. return S_OK;
  16. }
  17. STDMETHODIMP CBusuInfo::get_Stroke(short *pVal)
  18. {
  19. *pVal = m_nStroke;
  20. return S_OK;
  21. }