Mercurial > vba-clojure
view src/win32/MemoryViewerAddressSize.h @ 3:b05d00f19d80
fix some formatting
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:33:11 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 #if !defined(AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_)2 #define AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_4 #if _MSC_VER > 10005 #pragma once6 #endif // _MSC_VER > 10007 // -*- C++ -*-8 // MemoryViewerAddressSize.h : header file9 //11 /////////////////////////////////////////////////////////////////////////////12 // MemoryViewerAddressSize dialog14 class MemoryViewerAddressSize : public CDialog15 {16 u32 address;17 int size;18 // Construction19 public:20 int getSize();21 u32 getAddress();22 void setSize(int s);23 void setAddress(u32 a);24 MemoryViewerAddressSize(u32 a = 0xffffff, int s = -1, CWnd*pParent = NULL); // standard constructor26 // Dialog Data27 //{{AFX_DATA(MemoryViewerAddressSize)28 enum { IDD = IDD_ADDR_SIZE };29 CEdit m_size;30 CEdit m_address;31 //}}AFX_DATA33 // Overrides34 // ClassWizard generated virtual function overrides35 //{{AFX_VIRTUAL(MemoryViewerAddressSize)36 protected:37 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support38 //}}AFX_VIRTUAL40 // Implementation41 protected:42 // Generated message map functions43 //{{AFX_MSG(MemoryViewerAddressSize)44 virtual BOOL OnInitDialog();45 afx_msg void OnOk();46 afx_msg void OnCancel();47 //}}AFX_MSG48 DECLARE_MESSAGE_MAP()49 };51 //{{AFX_INSERT_LOCATION}}52 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.54 #endif // !defined(AFX_MEMORYVIEWERADDRESSSIZE_H__04605262_2B1D_4EED_A467_B6C56AC2CACD__INCLUDED_)