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.

29 lines
685 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. #ifndef __ADVANCEDPAGE__
  3. #define __ADVANCEDPAGE__
  4. #include "UIHelpers.h"
  5. #include "DataSrc.h"
  6. class CAdvancedPage : public CUIHelpers
  7. {
  8. private:
  9. public:
  10. CAdvancedPage(DataSource *ds, bool htmlSupport);
  11. virtual ~CAdvancedPage(void);
  12. private:
  13. virtual BOOL DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  14. void InitDlg(HWND hDlg);
  15. void Refresh(HWND hDlg);
  16. void OnApply(HWND hDlg, bool bClose);
  17. void OnNSSelChange(HWND hDlg);
  18. DataSource *m_DS;
  19. bool m_enableASP, m_anonConnection;
  20. DataSource::RESTART m_oldRestart;
  21. CHString1 m_DefNamespace;
  22. };
  23. #endif __ADVANCEDPAGE__