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.

58 lines
1.2 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // eapadd.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Declares the class EapAdd.
  12. //
  13. ///////////////////////////////////////////////////////////////////////////////
  14. #ifndef EAPADD_H
  15. #define EAPADD_H
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif
  19. #include "helptable.h"
  20. #include "pgauthen.h"
  21. ///////////////////////////////////////////////////////////////////////////////
  22. //
  23. // CLASS
  24. //
  25. // EapAdd
  26. //
  27. // DESCRIPTION
  28. //
  29. // Implements a dialog box to add some new EAP types to the profile.
  30. //
  31. ///////////////////////////////////////////////////////////////////////////////
  32. class EapAdd : public CHelpDialog
  33. {
  34. public:
  35. EapAdd(CWnd* pParent, EapConfig& eapConfig);
  36. ~EapAdd() throw ();
  37. private:
  38. virtual BOOL OnInitDialog();
  39. DECLARE_MESSAGE_MAP()
  40. afx_msg void OnButtonAdd();
  41. EapConfig& m_eapConfig;
  42. CStrBox<CListBox>* m_listBox;
  43. CStrArray m_typesNotSelected;
  44. // Not implemented.
  45. EapAdd(const EapAdd&);
  46. EapAdd& operator=(const EapAdd&);
  47. };
  48. #endif // EAPADD_H