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.

36 lines
772 B

  1. // PersExp.cpp : Implementation of CPersonExplorer
  2. #include "stdafx.h"
  3. #include "TapiDialer.h"
  4. #include "PersExp.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CPersonExplorer
  7. STDMETHODIMP CPersonExplorer::UnShow()
  8. {
  9. // TODO: Add your implementation code here
  10. return S_OK;
  11. }
  12. STDMETHODIMP CPersonExplorer::Show(HWND hWndTree, HWND hWndDetails)
  13. {
  14. // TODO: Add your implementation code here
  15. return S_OK;
  16. }
  17. STDMETHODIMP CPersonExplorer::get_DetailsView(IPersonExplorerDetailsView **ppVal)
  18. {
  19. // TODO: Add your implementation code here
  20. return S_OK;
  21. }
  22. STDMETHODIMP CPersonExplorer::get_TreeView(IPersonExplorerTreeView **ppVal)
  23. {
  24. // TODO: Add your implementation code here
  25. return S_OK;
  26. }