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.

51 lines
1.1 KiB

  1. //***************************************************************************
  2. //
  3. // UPDATECFG.CPP
  4. //
  5. // Module: NLB Manager
  6. //
  7. // Purpose: Defines class NlbConfigurationUpdate, used for
  8. // async update of NLB properties associated with a particular NIC.
  9. //
  10. // Copyright (c)2001 Microsoft Corporation, All Rights Reserved
  11. //
  12. // History:
  13. //
  14. // 04/05/01 JosephJ Created
  15. //
  16. //***************************************************************************
  17. #include "precomp.h"
  18. #pragma hdrstop
  19. #include "disclaimer.h"
  20. DisclaimerDialog::DisclaimerDialog(CWnd* parent )
  21. :
  22. CDialog( IDD, parent )
  23. {}
  24. void
  25. DisclaimerDialog::DoDataExchange( CDataExchange* pDX )
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. // DDX_Control( pDX, IDC_DO_NOT_REMIND, dontRemindMe );
  29. DDX_Check(pDX, IDC_DO_NOT_REMIND, dontRemindMe);
  30. }
  31. BOOL
  32. DisclaimerDialog::OnInitDialog()
  33. {
  34. BOOL fRet = CDialog::OnInitDialog();
  35. dontRemindMe = 0;
  36. return fRet;
  37. }
  38. void DisclaimerDialog::OnOK()
  39. {
  40. //
  41. // Get the current check status ....
  42. //
  43. CDialog::OnOK();
  44. }