mpastream.h

来自「获取mp3信息, Xing header, ID3 tag, APE tag, 」· C头文件 代码 · 共 21 行

H
21
字号
#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 + =
减小字号Ctrl + -
显示快捷键?