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.

52 lines
938 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. LScript.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CLoginScript dialog
  10. class CLoginScript : public CWizBaseDlg
  11. {
  12. DECLARE_DYNCREATE(CLoginScript)
  13. // Construction
  14. public:
  15. CLoginScript();
  16. ~CLoginScript();
  17. // Dialog Data
  18. //{{AFX_DATA(CLoginScript)
  19. enum { IDD = IDD_LOGON_SCRIPT_DIALOG };
  20. CString m_csLogonScript;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generate virtual function overrides
  24. //{{AFX_VIRTUAL(CLoginScript)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. LRESULT OnWizardBack();
  29. LRESULT OnWizardNext();
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CLoginScript)
  34. // NOTE: the ClassWizard will add member functions here
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };