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.
36 lines
772 B
36 lines
772 B
// PersExp.cpp : Implementation of CPersonExplorer
|
|
#include "stdafx.h"
|
|
#include "TapiDialer.h"
|
|
#include "PersExp.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPersonExplorer
|
|
|
|
|
|
STDMETHODIMP CPersonExplorer::UnShow()
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHODIMP CPersonExplorer::Show(HWND hWndTree, HWND hWndDetails)
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHODIMP CPersonExplorer::get_DetailsView(IPersonExplorerDetailsView **ppVal)
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
STDMETHODIMP CPersonExplorer::get_TreeView(IPersonExplorerTreeView **ppVal)
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|