mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
37
Src/Plugins/Input/in_swf/SWFParameters.h
Normal file
37
Src/Plugins/Input/in_swf/SWFParameters.h
Normal file
@@ -0,0 +1,37 @@
|
||||
#pragma once
|
||||
#include "../xml/ifc_xmlreadercallback.h"
|
||||
#include "XMLString.h"
|
||||
#include <vector>
|
||||
#include <crtdefs.h>
|
||||
|
||||
class obj_xml;
|
||||
|
||||
struct SWFArgument
|
||||
{
|
||||
wchar_t *type;
|
||||
wchar_t *value;
|
||||
};
|
||||
|
||||
class SWFParameters : public ifc_xmlreadercallback
|
||||
{
|
||||
public:
|
||||
typedef std::vector<SWFArgument*> ArgumentList;
|
||||
|
||||
SWFParameters(obj_xml *_parser);
|
||||
~SWFParameters();
|
||||
|
||||
wchar_t *functionName;
|
||||
|
||||
bool GetUnsigned(size_t index, unsigned int *value);
|
||||
bool GetDouble(size_t index, double *value);
|
||||
private:
|
||||
void StartTag(const wchar_t *xmlpath, const wchar_t *xmltag, ifc_xmlreaderparams *params);
|
||||
void EndTag(const wchar_t *xmlpath, const wchar_t *xmltag);
|
||||
XMLString currentParameter;
|
||||
ArgumentList arguments;
|
||||
|
||||
_locale_t C_locale;
|
||||
obj_xml *parser;
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
};
|
Reference in New Issue
Block a user