Mercurial > vba-clojure
diff src/win32/RomInfo.h @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/win32/RomInfo.h Sat Mar 03 10:31:27 2012 -0600 1.3 @@ -0,0 +1,79 @@ 1.4 +#if !defined(AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_) 1.5 +#define AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_ 1.6 + 1.7 +#if _MSC_VER > 1000 1.8 +#pragma once 1.9 +#endif // _MSC_VER > 1000 1.10 +// -*- C++ -*- 1.11 +// RomInfo.h : header file 1.12 +// 1.13 + 1.14 +///////////////////////////////////////////////////////////////////////////// 1.15 +// RomInfoGB dialog 1.16 + 1.17 +class RomInfoGB : public CDialog 1.18 +{ 1.19 + // Construction 1.20 +public: 1.21 + RomInfoGB(u8 *rom, CWnd*pParent = NULL); // standard constructor 1.22 + 1.23 + // Dialog Data 1.24 + //{{AFX_DATA(RomInfoGB) 1.25 + enum { IDD = IDD_GB_ROM_INFO }; 1.26 + // NOTE: the ClassWizard will add data members here 1.27 + //}}AFX_DATA 1.28 + 1.29 + // Overrides 1.30 + // ClassWizard generated virtual function overrides 1.31 + //{{AFX_VIRTUAL(RomInfoGB) 1.32 +protected: 1.33 + virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support 1.34 + //}}AFX_VIRTUAL 1.35 + u8 *rom; 1.36 + 1.37 + // Implementation 1.38 +protected: 1.39 + // Generated message map functions 1.40 + //{{AFX_MSG(RomInfoGB) 1.41 + afx_msg void OnOk(); 1.42 + virtual BOOL OnInitDialog(); 1.43 + //}}AFX_MSG 1.44 + DECLARE_MESSAGE_MAP() 1.45 +}; 1.46 + 1.47 +///////////////////////////////////////////////////////////////////////////// 1.48 +// RomInfoGBA dialog 1.49 + 1.50 +class RomInfoGBA : public CDialog 1.51 +{ 1.52 + // Construction 1.53 +public: 1.54 + RomInfoGBA(u8 *rom, CWnd*pParent = NULL); // standard constructor 1.55 + 1.56 + // Dialog Data 1.57 + //{{AFX_DATA(RomInfoGBA) 1.58 + enum { IDD = IDD_GBA_ROM_INFO }; 1.59 + // NOTE: the ClassWizard will add data members here 1.60 + //}}AFX_DATA 1.61 + u8 *rom; 1.62 + 1.63 + // Overrides 1.64 + // ClassWizard generated virtual function overrides 1.65 + //{{AFX_VIRTUAL(RomInfoGBA) 1.66 +protected: 1.67 + virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support 1.68 + //}}AFX_VIRTUAL 1.69 + 1.70 + // Implementation 1.71 +protected: 1.72 + // Generated message map functions 1.73 + //{{AFX_MSG(RomInfoGBA) 1.74 + afx_msg void OnOk(); 1.75 + virtual BOOL OnInitDialog(); 1.76 + //}}AFX_MSG 1.77 + DECLARE_MESSAGE_MAP() 1.78 +}; 1.79 +//{{AFX_INSERT_LOCATION}} 1.80 +// Microsoft Visual C++ will insert additional declarations immediately before the previous line. 1.81 + 1.82 +#endif // !defined(AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_)