Mercurial > vba-clojure
comparison 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 |
comparison
equal
deleted
inserted
replaced
0:8ced16adf2e1 | 1:f9f4f1b99eed |
---|---|
1 #if !defined(AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_) | |
2 #define AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_ | |
3 | |
4 #if _MSC_VER > 1000 | |
5 #pragma once | |
6 #endif // _MSC_VER > 1000 | |
7 // -*- C++ -*- | |
8 // RomInfo.h : header file | |
9 // | |
10 | |
11 ///////////////////////////////////////////////////////////////////////////// | |
12 // RomInfoGB dialog | |
13 | |
14 class RomInfoGB : public CDialog | |
15 { | |
16 // Construction | |
17 public: | |
18 RomInfoGB(u8 *rom, CWnd*pParent = NULL); // standard constructor | |
19 | |
20 // Dialog Data | |
21 //{{AFX_DATA(RomInfoGB) | |
22 enum { IDD = IDD_GB_ROM_INFO }; | |
23 // NOTE: the ClassWizard will add data members here | |
24 //}}AFX_DATA | |
25 | |
26 // Overrides | |
27 // ClassWizard generated virtual function overrides | |
28 //{{AFX_VIRTUAL(RomInfoGB) | |
29 protected: | |
30 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support | |
31 //}}AFX_VIRTUAL | |
32 u8 *rom; | |
33 | |
34 // Implementation | |
35 protected: | |
36 // Generated message map functions | |
37 //{{AFX_MSG(RomInfoGB) | |
38 afx_msg void OnOk(); | |
39 virtual BOOL OnInitDialog(); | |
40 //}}AFX_MSG | |
41 DECLARE_MESSAGE_MAP() | |
42 }; | |
43 | |
44 ///////////////////////////////////////////////////////////////////////////// | |
45 // RomInfoGBA dialog | |
46 | |
47 class RomInfoGBA : public CDialog | |
48 { | |
49 // Construction | |
50 public: | |
51 RomInfoGBA(u8 *rom, CWnd*pParent = NULL); // standard constructor | |
52 | |
53 // Dialog Data | |
54 //{{AFX_DATA(RomInfoGBA) | |
55 enum { IDD = IDD_GBA_ROM_INFO }; | |
56 // NOTE: the ClassWizard will add data members here | |
57 //}}AFX_DATA | |
58 u8 *rom; | |
59 | |
60 // Overrides | |
61 // ClassWizard generated virtual function overrides | |
62 //{{AFX_VIRTUAL(RomInfoGBA) | |
63 protected: | |
64 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support | |
65 //}}AFX_VIRTUAL | |
66 | |
67 // Implementation | |
68 protected: | |
69 // Generated message map functions | |
70 //{{AFX_MSG(RomInfoGBA) | |
71 afx_msg void OnOk(); | |
72 virtual BOOL OnInitDialog(); | |
73 //}}AFX_MSG | |
74 DECLARE_MESSAGE_MAP() | |
75 }; | |
76 //{{AFX_INSERT_LOCATION}} | |
77 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. | |
78 | |
79 #endif // !defined(AFX_ROMINFO_H__9888A45C_3E71_4C0F_B119_EFC74DFF8CD3__INCLUDED_) |