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
28 lines
506 B
// IBusuInfo.cpp : Implementation of CBusuInfo
|
|
#include "stdafx.h"
|
|
#include "HjDict.h"
|
|
#include "IBusuInfo.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CBusuInfo
|
|
|
|
STDMETHODIMP CBusuInfo::get_Busu(long *pVal)
|
|
{
|
|
*pVal = (long)m_wchBusu;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHODIMP CBusuInfo::get_BusuDesc(BSTR *pVal)
|
|
{
|
|
*pVal = m_bstrDesc.Copy();
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHODIMP CBusuInfo::get_Stroke(short *pVal)
|
|
{
|
|
*pVal = m_nStroke;
|
|
|
|
return S_OK;
|
|
}
|