Windows NT 4.0 source code leak
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.

46 lines
1.1 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * SETFONT.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. #ifndef __SETFONT_H
  10. #define __SETFONT_H
  11. class CSetFont : public CDialog
  12. {
  13. public:
  14. CSetFont(PSTR pszFontName, int* ppt, BYTE* pcharset, CWnd* pParent = NULL); // standard constructor
  15. protected:
  16. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  17. virtual BOOL OnInitDialog();
  18. PSTR m_pszFontName;
  19. int* m_ppt;
  20. BYTE* m_pcharset;
  21. // The following sections are ClassWizard maintained
  22. public:
  23. //{{AFX_DATA(CSetFont)
  24. enum { IDD = IDD_FONT };
  25. UINT m_pt;
  26. //}}AFX_DATA
  27. protected:
  28. // Generated message map functions
  29. //{{AFX_MSG(CSetFont)
  30. // NOTE: the ClassWizard will add member functions here
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  34. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  35. };
  36. #endif // __SETFONT_H