www.pudn.com > MCIWnd_MediaPlayer.rar > PlayList.h


#pragma once 
#include "afxtempl.h" 
struct PlayNode 
{ 
	CString fileName; 
	CString path; 
}; 
class CPlayList 
{ 
public: 
	CList fileList; 
	CPlayList(void); 
	~CPlayList(void); 
	int AddFile(CString file); 
	int AddDir(CString dir); 
	CString GetCur(int index); 
	int Reset(void); 
	int Del(int index); 
};