You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
376 B
19 lines
376 B
#ifndef _CDDB_ITEM_H_
|
|
#define _CDDB_ITEM_H_
|
|
#include "ccom.h"
|
|
class CDDBItem : public CCommon
|
|
{
|
|
public:
|
|
CDDBItem();
|
|
~CDDBItem();
|
|
LPWSTR SetTextW(LPWSTR lpwstr);
|
|
LPWSTR GetTextW(VOID);
|
|
LPSTR GetTextA(VOID);
|
|
LPCDDBItem next; //for linked list;
|
|
private:
|
|
LPWSTR m_lpwstrText;
|
|
CHAR m_szTmpStr[256];
|
|
HICON m_hIcon;
|
|
};
|
|
|
|
#endif //_CDDB_ITEM_H_
|