Source code of Windows XP (NT5)
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.

38 lines
735 B

  1. #if !defined(AFX_ILSDlg_H)
  2. #define AFX_ILSDlg_H
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. #include "rend.h"
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CILSDlg dialog
  9. class CILSDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13. CILSDlg(CWnd* pParent = NULL);
  14. enum { IDD = IDD_ILSSERVERS };
  15. protected:
  16. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  17. //}}AFX_VIRTUAL
  18. // Implementation
  19. protected:
  20. BOOL CILSDlg::OnInitDialog();
  21. virtual void OnOK();
  22. afx_msg void OnDestroy();
  23. afx_msg void OnAdd();
  24. afx_msg void OnRemove();
  25. void ListServers();
  26. void SaveServers();
  27. void CleanUp();
  28. DECLARE_MESSAGE_MAP()
  29. };
  30. #endif