Leaked source code of windows server 2003
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

  1. #ifndef _CDDB_ITEM_H_
  2. #define _CDDB_ITEM_H_
  3. #include "ccom.h"
  4. class CDDBItem : public CCommon
  5. {
  6. public:
  7. CDDBItem();
  8. ~CDDBItem();
  9. LPWSTR SetTextW(LPWSTR lpwstr);
  10. LPWSTR GetTextW(VOID);
  11. LPSTR GetTextA(VOID);
  12. LPCDDBItem next; //for linked list;
  13. private:
  14. LPWSTR m_lpwstrText;
  15. CHAR m_szTmpStr[256];
  16. HICON m_hIcon;
  17. };
  18. #endif //_CDDB_ITEM_H_