📄 hplaylist.h
字号:
// HPlayList.h: interface for the CHPlayList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HPLAYLIST_H__67EF55F9_CFC8_4152_AB39_01A9988E5C63__INCLUDED_)
#define AFX_HPLAYLIST_H__67EF55F9_CFC8_4152_AB39_01A9988E5C63__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CHPlayList
{
public:
void Reset();
UINT GetCount();
CString GetLast();
CString GetPrevious();
UINT GetCurrentIndex();
CString GetNext();
void Add(CString adr);
CHPlayList();
virtual ~CHPlayList();
private:
CStringArray m_list;
UINT m_index;
};
#endif // !defined(AFX_HPLAYLIST_H__67EF55F9_CFC8_4152_AB39_01A9988E5C63__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -