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.

35 lines
810 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1998
  6. //
  7. // File: credui.h
  8. //
  9. //--------------------------------------------------------------------------
  10. ///////////////////////////////////////////
  11. // credui.h
  12. #ifndef _CREDUI_H
  13. #define _CREDUI_H
  14. #include "editor.h"
  15. class CCredentialDialog : public CDialog
  16. {
  17. public :
  18. CCredentialDialog::CCredentialDialog(CCredentialObject* pCredObject,
  19. LPCWSTR lpszConnectName,
  20. CWnd* pCWnd);
  21. ~CCredentialDialog();
  22. virtual BOOL OnInitDialog();
  23. virtual void OnOK();
  24. private :
  25. CCredentialObject* m_pCredObject;
  26. CString m_sConnectName;
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. #endif //_CREDUI_H