⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 playlist.h

📁 在WCE4.2下面用EVC开发的一个带图型界面的音乐播放器,带音乐播放的一般功能,如快进快退,拖动,音量拖动调节,等功能,不到歌词显示功能,
💻 H
字号:
// Playlist.h: interface for the CPlaylist class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_PLAYLIST_H__F72B480D_36E8_46F2_B515_4C57735AF542__INCLUDED_)
#define AFX_PLAYLIST_H__F72B480D_36E8_46F2_B515_4C57735AF542__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CPlaylist  
{
public:
	void InitSeed(void);
	unsigned int MakeRandom(int MaxNumber);
	CString GetNextWorkFileName(bool bForword, bool bRandom);

	CPlaylist();
	virtual ~CPlaylist();
	CString 	m_FilePath;
	CStringArray m_FileList;
	int		m_TotalFiles;
	int 		m_CurrentFile;
	int 		m_Seed[1024];	//随机播放顺序数组
};

#endif // !defined(AFX_PLAYLIST_H__F72B480D_36E8_46F2_B515_4C57735AF542__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -