mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 07:55:45 -04:00
Initial community commit
This commit is contained in:
20
Src/Plugins/Input/in_mp3/uvox_3901.h
Normal file
20
Src/Plugins/Input/in_mp3/uvox_3901.h
Normal file
@ -0,0 +1,20 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user