📄 mp3file.h
字号:
//////////////////////////////////////////////////////////////////////
// FileFury
// Copyright (c) 2000 Tenebril Incorporated
// All rights reserved.
//
// This source code is governed by the Tenebril open source
// license (http://www.tenebril.com/developers/opensource/license.html)
//
// For more information on this and other open source applications,
// visit the Tenebril OpenSource page:
// http://www.tenebril.com/developers/opensource
//
//////////////////////////////////////////////////////////////////////
// MP3File.h: interface for the CMP3File class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MP3FILE_H__BF26FEC0_64AD_11D3_B8DD_00600838CD5F__INCLUDED_)
#define AFX_MP3FILE_H__BF26FEC0_64AD_11D3_B8DD_00600838CD5F__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CMP3File : public CFile
{
public:
BOOL GetTAG(CString &cszTitle, CString &cszArtist, CString &cszAlbum,
CString &cszYear, CString &cszComment, CString &cszGenre);
CMP3File();
virtual ~CMP3File();
private:
CString ParseGenre(int nGenre);
};
#endif // !defined(AFX_MP3FILE_H__BF26FEC0_64AD_11D3_B8DD_00600838CD5F__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -