43 lines
1,011 B
C++
43 lines
1,011 B
C++
// ROMDump.h : main header file for the ROMDUMP application
|
|
//
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
#define HP48S 0
|
|
#define HP48G 1
|
|
extern int Port;
|
|
extern int Type;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CROMDumpApp:
|
|
// See ROMDump.cpp for the implementation of this class
|
|
//
|
|
|
|
class CROMDumpApp : public CWinApp
|
|
{
|
|
public:
|
|
CROMDumpApp();
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CROMDumpApp)
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
|
|
//{{AFX_MSG(CROMDumpApp)
|
|
afx_msg void OnAppAbout();
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
// DO NOT EDIT what you see in these blocks of generated code !
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|