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.

35 lines
927 B

  1. /**************************************************/
  2. /* */
  3. /* Import Bimmap(Windows 3.1) */
  4. /* (Dialogbox) */
  5. /* */
  6. /* */
  7. /* Copyright (c) 1997-1999 Microsoft Corporation. */
  8. /**************************************************/
  9. class CImportDlg : public CDialog
  10. {
  11. public:
  12. CImportDlg(CWnd* pParent = NULL); // standard constructor
  13. //{{AFX_DATA(CImportDlg)
  14. enum { IDD = IDD_IMPORT };
  15. //}}AFX_DATA
  16. private:
  17. char UserFontTitle[MAX_PATH];
  18. char EUDCFontTitle[MAX_PATH];
  19. //{{AFX_VIRTUAL(CImportDlg)
  20. protected:
  21. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  22. //}}AFX_VIRTUAL
  23. protected:
  24. //{{AFX_MSG(CImportDlg)
  25. virtual BOOL OnInitDialog();
  26. afx_msg void OnFileBrowse();
  27. virtual void OnOK();
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };