📄 mpastream.h
字号:
#pragma once
class CMPAStream
{
public:
virtual ~CMPAStream(void);
virtual DWORD GetSize() const = 0;
virtual BYTE* ReadBytes(DWORD dwSize, DWORD& dwOffset, bool bMoveOffset = true, bool bReverse = false) const = 0;
DWORD ReadBEValue(DWORD dwNumBytes, DWORD& dwOffset, bool bMoveOffset = true) const;
DWORD ReadLEValue(DWORD dwNumBytes, DWORD& dwOffset, bool bMoveOffset = true) const;
LPCTSTR GetFilename() const { return m_szFile; };
protected:
LPTSTR m_szFile;
CMPAStream(LPCTSTR szFilename);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -