diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Wasabi/api/xml/xmlparamsx.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Wasabi/api/xml/xmlparamsx.h')
-rw-r--r-- | Src/Wasabi/api/xml/xmlparamsx.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Src/Wasabi/api/xml/xmlparamsx.h b/Src/Wasabi/api/xml/xmlparamsx.h new file mode 100644 index 00000000..8e2c6eae --- /dev/null +++ b/Src/Wasabi/api/xml/xmlparamsx.h @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------- +// Generated by InterfaceFactory [Thu May 15 21:07:09 2003] +// +// File : xmlparamsx.h +// Class : ifc_xmlreaderparams +// class layer : Dispatchable Receiver +// ---------------------------------------------------------------------------- + +#ifndef __XMLREADERPARAMSX_H +#define __XMLREADERPARAMSX_H + +#include "xmlparams.h" + + + + +// ---------------------------------------------------------------------------- + +class XmlReaderParamsX : public skin_xmlreaderparams { + protected: + XmlReaderParamsX() {} + public: + virtual const wchar_t *getItemName(int i)=0; + virtual const wchar_t *getItemValue(int i)=0; + virtual const wchar_t *getItemValue2(const wchar_t *name); + virtual const wchar_t *enumItemValues(const wchar_t *name, int nb)=0; + virtual int getItemValueInt(const wchar_t *name, int def = 0)=0; + virtual int getNbItems()=0; + virtual void addItem(const wchar_t *parm, const wchar_t *value)=0; + virtual void removeItem(const wchar_t *parm)=0; + virtual void replaceItem(const wchar_t *parm, const wchar_t *value)=0; + virtual int findItem(const wchar_t *parm)=0; + + protected: + RECVS_DISPATCH; +}; + +#endif // __XMLREADERPARAMSX_H |