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.

40 lines
976 B

4 years ago
  1. // bintrdlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CBintrackDlg dialog
  5. class CBintrackDlg : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CBintrackDlg(CWnd* pParent = NULL); // standard constructor
  10. // Dialog Data
  11. //{{AFX_DATA(CBintrackDlg)
  12. enum { IDD = IDD_BINTRACK_DIALOG };
  13. CProgressCtrl m_Progress;
  14. CString m_BinaryName;
  15. //}}AFX_DATA
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CBintrackDlg)
  18. protected:
  19. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. protected:
  23. HICON m_hIcon;
  24. // Generated message map functions
  25. //{{AFX_MSG(CBintrackDlg)
  26. virtual BOOL OnInitDialog();
  27. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  28. afx_msg void OnPaint();
  29. afx_msg HCURSOR OnQueryDragIcon();
  30. virtual void OnOK();
  31. afx_msg void OnUpdateBinaryName();
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };