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.

27 lines
1.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // FILE : CovNotifyWnd.cpp //
  3. // //
  4. // DESCRIPTION : The implementation of fax cover page notification //
  5. // window. //
  6. // //
  7. // AUTHOR : yossg //
  8. // //
  9. // HISTORY : //
  10. // Mar 14 2000 yossg Create //
  11. // //
  12. // Copyright (C) 2000 Microsoft Corporation All Rights Reserved //
  13. /////////////////////////////////////////////////////////////////////////////
  14. #include "stdafx.h"
  15. #include "CovNotifyWnd.h"
  16. #include "CoverPages.h"
  17. LRESULT CFaxCoverPageNotifyWnd::OnServerCovDirChanged(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
  18. {
  19. DEBUG_FUNCTION_NAME( _T("CFaxCoverPageNotifyWnd::OnServerCovDirChanged"));
  20. ATLASSERT(m_pCoverPagesNode);
  21. m_pCoverPagesNode->DoRefresh();
  22. return 0;
  23. }