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.

39 lines
1.0 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * FORMBAG.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. class CFormBaggage : public CDialog
  10. {
  11. public:
  12. CFormBaggage(CHpjDoc* pHpjDoc, CWnd* pParent = NULL);
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX);
  15. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  16. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  17. CHpjDoc* pDoc;
  18. CListBox* plistbox;
  19. // The following sections are ClassWizard maintained
  20. public:
  21. //{{AFX_DATA(CFormBaggage)
  22. enum { IDD = IDD_FORM_BAGGAGE };
  23. // NOTE: the ClassWizard will add data members here
  24. //}}AFX_DATA
  25. protected:
  26. // Generated message map functions
  27. //{{AFX_MSG(CFormBaggage)
  28. afx_msg void OnButtonAddBaggage();
  29. afx_msg void OnButtonRemoveBaggage();
  30. afx_msg void OnBtnOverview();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };