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.

61 lines
1.2 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. /*******************************************************************************
  3. *
  4. * optdlg.h
  5. *
  6. * interface of COptionsDlg class
  7. *
  8. * copyright notice: Copyright 1995, Citrix Systems Inc.
  9. *
  10. * $Author: butchd $ Butch Davis
  11. *
  12. * $Log: N:\NT\PRIVATE\UTILS\CITRIX\WINUTILS\WINCFG\VCS\OPTDLG.H $
  13. *
  14. * Rev 1.0 16 Nov 1995 17:20:56 butchd
  15. * Initial revision.
  16. *
  17. *******************************************************************************/
  18. /*
  19. * include files (base dialog)
  20. */
  21. #include "basedlg.h"
  22. #ifndef OPTDLG_INCLUDED
  23. ////////////////////////////////////////////////////////////////////////////////
  24. // COptionsDlg class
  25. //
  26. class COptionsDlg : public CBaseDialog
  27. {
  28. /*
  29. * Member variables.
  30. */
  31. //{{AFX_DATA(COptionsDlg)
  32. enum { IDD = IDD_OPTDLG };
  33. //}}AFX_DATA
  34. /*
  35. * Implementation.
  36. */
  37. public:
  38. COptionsDlg();
  39. /*
  40. * Operations.
  41. */
  42. public:
  43. /*
  44. * Message map / commands.
  45. */
  46. protected:
  47. //{{AFX_MSG(COptionsDlg)
  48. virtual BOOL OnInitDialog();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. }; // end COptionsDlg class interface
  52. ////////////////////////////////////////////////////////////////////////////////
  53. #define OPTDLG_INCLUDED
  54. #endif