Add Code Stubs - PhBookObj.cpp
Code stubs added to PhBookObj.cpp:
STDMETHODIMP CPhBookObj::get_CurRec(long *pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::put_CurRec(long newVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::get_MaxRecs(long *pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::get_NumRecs(long *pVal)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::GetPhoneRec
(PhRec *pPhRec, BOOL *pOK)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::AddPhoneRec
(PhRec *pPhRec, BOOL *pOK)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CPhBookObj::DeletePhoneRec(BOOL *pOK)
{
// TODO: Add your implementation code here
return S_OK;
}