blob: aa91026a98b4e218fd6e38c395fd33d40e31e1ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cgit-pink 1.4.1 (git 2.36.1) at 2025-04-06 09:29:44 +0000
lass="p">;
class CWMPStringCollection;
/////////////////////////////////////////////////////////////////////////////
// CWMPMediaCollection wrapper class
class CWMPMediaCollection : public COleDispatchDriver
{
public:
CWMPMediaCollection() {} // Calls COleDispatchDriver default constructor
CWMPMediaCollection(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CWMPMediaCollection(const CWMPMediaCollection& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// Attributes
public:
// Operations
public:
CWMPMedia add(LPCTSTR bstrURL);
CWMPPlaylist getAll();
CWMPPlaylist getByName(LPCTSTR bstrName);
CWMPPlaylist getByGenre(LPCTSTR bstrGenre);
CWMPPlaylist getByAuthor(LPCTSTR bstrAuthor);
CWMPPlaylist getByAlbum(LPCTSTR bstrAlbum);
CWMPPlaylist getByAttribute(LPCTSTR bstrAttribute, LPCTSTR bstrValue);
void remove(LPDISPATCH pItem, BOOL varfDeleteFile);
CWMPStringCollection getAttributeStringCollection(LPCTSTR bstrAttribute, LPCTSTR bstrMediaType);
long getMediaAtom(LPCTSTR bstrItemName);
void setDeleted(LPDISPATCH pItem, BOOL varfIsDeleted);
BOOL isDeleted(LPDISPATCH pItem);
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_WMPMEDIACOLLECTION_H__8C47EB0E_4638_46DA_A405_415AEAE509CE__INCLUDED_)
|