37 lines
		
	
	
		
			772 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			772 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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;
 | 
						|
}
 |