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.

50 lines
1.0 KiB

  1. //***************************************************************************
  2. //
  3. // DISCLAIMER.H
  4. //
  5. // Module: NLB Manager EXE
  6. //
  7. // Purpose: sets up a disclaimer dialogbox, which has a "don't remind
  8. // me again checkbox".
  9. //
  10. // Copyright (c)2001 Microsoft Corporation, All Rights Reserved
  11. //
  12. // History:
  13. //
  14. // 05/20/01 JosephJ Created
  15. //
  16. //***************************************************************************
  17. #ifndef DISCLAIMER_H
  18. #define DISCLAIMER_H
  19. #include "stdafx.h"
  20. #include "resource.h"
  21. class DisclaimerDialog : public CDialog
  22. {
  23. public:
  24. enum
  25. {
  26. IDD = IDD_DISCLAIMER,
  27. };
  28. DisclaimerDialog(CWnd* parent = NULL);
  29. virtual BOOL OnInitDialog();
  30. virtual void OnOK();
  31. // overrides CDialog -- see SDK documentation on DoDataExchange.
  32. // Used to map controls in resources to corresponding objects in this class.
  33. virtual void DoDataExchange( CDataExchange* pDX );
  34. // CButton dontRemindMe;
  35. int dontRemindMe;
  36. };
  37. #endif