Mercurial > vba-linux
view src/win32/Disassemble.h @ 4:5f6f2134e8ce
apu appears to not be used
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:35:58 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 #if !defined(AFX_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_)2 #define AFX_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_4 #if _MSC_VER > 10005 #pragma once6 #endif // _MSC_VER > 10007 // Disassemble.h : header file8 //10 #include "IUpdate.h"11 #include "ResizeDlg.h"13 /////////////////////////////////////////////////////////////////////////////14 // Disassemble dialog16 class Disassemble : public ResizeDlg, IUpdateListener17 {18 // Construction19 public:20 virtual void update();21 void refresh();22 Disassemble(CWnd*pParent = NULL); // standard constructor24 // Dialog Data25 //{{AFX_DATA(Disassemble)26 enum { IDD = IDD_DISASSEMBLE };27 CEdit m_address;28 CListBox m_list;29 BOOL m_c;30 BOOL m_f;31 BOOL m_i;32 BOOL m_n;33 BOOL m_t;34 BOOL m_v;35 BOOL m_z;36 //}}AFX_DATA37 bool autoUpdate;38 int count;39 u32 address;40 int mode;42 // Overrides43 // ClassWizard generated virtual function overrides44 //{{AFX_VIRTUAL(Disassemble)45 protected:46 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support47 virtual void PostNcDestroy();48 //}}AFX_VIRTUAL50 // Implementation51 protected:52 // Generated message map functions53 //{{AFX_MSG(Disassemble)54 afx_msg void OnAutoUpdate();55 afx_msg void OnAutomatic();56 afx_msg void OnArm();57 afx_msg void OnClose();58 afx_msg void OnGo();59 afx_msg void OnGopc();60 afx_msg void OnNext();61 afx_msg void OnRefresh();62 afx_msg void OnThumb();63 virtual BOOL OnInitDialog();64 afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar*pScrollBar);65 //}}AFX_MSG66 DECLARE_MESSAGE_MAP()67 };69 //{{AFX_INSERT_LOCATION}}70 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.72 #endif // !defined(AFX_DISASSEMBLE_H__CA10E857_7D76_4B19_A62B_D0677040FD0F__INCLUDED_)