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.

100 lines
2.4 KiB

  1. // GenNtfy.cpp : Implementation of CGeneralNotification
  2. #include "stdafx.h"
  3. #include "TapiDialer.h"
  4. #include "GenNtfy.h"
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CGeneralNotification
  7. STDMETHODIMP CGeneralNotification::IsReminderSet(BSTR bstrServer, BSTR bstrName)
  8. {
  9. // TODO: Add your implementation code here
  10. return S_OK;
  11. }
  12. STDMETHODIMP CGeneralNotification::ResolveAddress(BSTR bstrAddress, BSTR * pbstrName, BSTR * pbstrUser1, BSTR * pbstrUser2)
  13. {
  14. // TODO: Add your implementation code here
  15. return S_OK;
  16. }
  17. STDMETHODIMP CGeneralNotification::ClearUserList()
  18. {
  19. // TODO: Add your implementation code here
  20. return S_OK;
  21. }
  22. STDMETHODIMP CGeneralNotification::AddUser(BSTR bstrName, BSTR bstrAddress, BSTR bstrPhoneNumber)
  23. {
  24. // TODO: Add your implementation code here
  25. return S_OK;
  26. }
  27. STDMETHODIMP CGeneralNotification::ResolveAddressEx(BSTR bstrAddress, long lAddressType, DialerMediaType nMedia, DialerLocationType nLocation, BSTR * pbstrName, BSTR * pbstrAddress, BSTR * pbstrUser1, BSTR * pbstrUser2)
  28. {
  29. // TODO: Add your implementation code here
  30. return S_OK;
  31. }
  32. STDMETHODIMP CGeneralNotification::AddSiteServer(BSTR bstrServer)
  33. {
  34. // TODO: Add your implementation code here
  35. return S_OK;
  36. }
  37. STDMETHODIMP CGeneralNotification::RemoveSiteServer(BSTR bstrName)
  38. {
  39. // TODO: Add your implementation code here
  40. return S_OK;
  41. }
  42. STDMETHODIMP CGeneralNotification::NotifySiteServerStateChange(BSTR bstrName, ServerState nState)
  43. {
  44. // TODO: Add your implementation code here
  45. return S_OK;
  46. }
  47. STDMETHODIMP CGeneralNotification::AddSpeedDial(BSTR bstrName, BSTR bstrAddress, CallManagerMedia cmm)
  48. {
  49. // TODO: Add your implementation code here
  50. return S_OK;
  51. }
  52. STDMETHODIMP CGeneralNotification::UpdateConfRootItem(BSTR bstrNewText)
  53. {
  54. // TODO: Add your implementation code here
  55. return S_OK;
  56. }
  57. STDMETHODIMP CGeneralNotification::UpdateConfParticipant(MyUpdateType nType, IParticipant * pParticipant, BSTR bstrText)
  58. {
  59. // TODO: Add your implementation code here
  60. return S_OK;
  61. }
  62. STDMETHODIMP CGeneralNotification::DeleteAllConfParticipants()
  63. {
  64. // TODO: Add your implementation code here
  65. return S_OK;
  66. }
  67. STDMETHODIMP CGeneralNotification::SelectConfParticipant(IParticipant * pParticipant)
  68. {
  69. // TODO: Add your implementation code here
  70. return S_OK;
  71. }