mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
20 lines
No EOL
499 B
C++
20 lines
No EOL
499 B
C++
#pragma once
|
|
#include "../xml/obj_xml.h"
|
|
#include "../xml/ifc_xmlreadercallback.h"
|
|
|
|
|
|
class Ultravox3901 : public ifc_xmlreadercallback
|
|
{
|
|
public:
|
|
Ultravox3901();
|
|
~Ultravox3901();
|
|
int Parse(const char *xml_data);
|
|
int GetExtendedData(const char *tag, wchar_t *data, int dataLen);
|
|
private:
|
|
/* XML callbacks */
|
|
void TextHandler(const wchar_t *xmlpath, const wchar_t *xmltag, const wchar_t *str);
|
|
|
|
obj_xml *parser;
|
|
wchar_t title[256],artist[256],album[256],album_art_url[4096];
|
|
RECVS_DISPATCH;
|
|
}; |