2015-12-23 20:41:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class RomInformation
|
|
|
|
{
|
2022-09-26 02:31:54 +00:00
|
|
|
bool const m_DeleteRomInfo;
|
|
|
|
bool const m_DeleteDiskInfo;
|
|
|
|
stdstr const m_FileName;
|
|
|
|
CN64Rom * m_pRomInfo;
|
|
|
|
CN64Disk * m_pDiskInfo;
|
2015-12-23 20:41:06 +00:00
|
|
|
|
|
|
|
friend DWORD CALLBACK RomInfoProc(HWND, DWORD, DWORD, DWORD);
|
|
|
|
|
|
|
|
public:
|
2022-09-26 02:31:54 +00:00
|
|
|
RomInformation(const char * RomFile);
|
|
|
|
RomInformation(CN64Rom * RomInfo);
|
|
|
|
RomInformation(CN64Disk * DiskInfo);
|
2015-12-23 20:41:06 +00:00
|
|
|
~RomInformation();
|
|
|
|
|
|
|
|
void DisplayInformation(HWND hParent) const;
|
|
|
|
};
|