home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef _CDLGOPT_H_
- #define _CDLGOPT_H_
-
- struct DLGDATA
- {
- LPTSTR pszPwd;
- LPTSTR pszUser;
- LPTSTR pszProxy;
- DWORD dwAccessType;
- BOOL anonymous;
- };
-
- class CDlg;
-
- class CDlgOpt
- {
- friend CDlg;
- protected:
- DWORD m_dwAccessType;
- TCHAR m_pszPwd[20];
- TCHAR m_pszUser[20];
- TCHAR m_pszProxy[20];
- BOOL m_anonymous;
-
-
-
- public:
- // Initialization methods
- CDlgOpt(); //DLGDATA *); // Constructor
- virtual ~CDlgOpt(); // Destructor
- BOOL Init(HINSTANCE, HWND, DLGDATA *);
-
- static BOOL CALLBACK DialogProc(HWND, UINT, WPARAM, LPARAM);
-
- };
-
- #endif
-
-