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.

69 lines
1.7 KiB

  1. #if !defined(AFX_WIZDIR_H__5F8E4B7A_C1ED_11D2_8E4A_0000F87A3388__INCLUDED_)
  2. #define AFX_WIZDIR_H__5F8E4B7A_C1ED_11D2_8E4A_0000F87A3388__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // WizDir.h : header file
  7. //
  8. typedef enum _CLIENT_TYPE {
  9. CLIENT_TYPE_SMB=0,
  10. CLIENT_TYPE_FPNW,
  11. CLIENT_TYPE_SFM
  12. } CLIENT_TYPE;
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CWizFolder dialog
  15. class CWizFolder : public CPropertyPage
  16. {
  17. DECLARE_DYNCREATE(CWizFolder)
  18. // Construction
  19. public:
  20. CWizFolder();
  21. ~CWizFolder();
  22. // Dialog Data
  23. //{{AFX_DATA(CWizFolder)
  24. enum { IDD = IDD_SHRWIZ_FOLDER };
  25. // NOTE - ClassWizard will add data members here.
  26. // DO NOT EDIT what you see in these blocks of generated code !
  27. //}}AFX_DATA
  28. // Overrides
  29. // ClassWizard generate virtual function overrides
  30. //{{AFX_VIRTUAL(CWizFolder)
  31. public:
  32. virtual LRESULT OnWizardNext();
  33. virtual BOOL OnSetActive();
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. // Generated message map functions
  40. //{{AFX_MSG(CWizFolder)
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnBrowsefolder();
  43. afx_msg void OnCheckMac();
  44. afx_msg void OnCheckMs();
  45. afx_msg void OnCheckNetware();
  46. afx_msg void OnChangeSharename();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. LRESULT OnSetPageFocus(WPARAM wParam, LPARAM lParam);
  50. void OnCheckClient();
  51. void Reset();
  52. BOOL ShareNameExists(IN LPCTSTR lpszShareName, IN CLIENT_TYPE iType);
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_WIZDIR_H__5F8E4B7A_C1ED_11D2_8E4A_0000F87A3388__INCLUDED_)