summaryrefslogtreecommitdiffstats
path: root/amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h')
-rw-r--r--amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h b/amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h
index de321d7e..98857d3a 100644
--- a/amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h
+++ b/amarok/src/engine/helix/helix-sp/helix-include/common/include/hxvalue.h
@@ -58,7 +58,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
/*
* IUnknown methods
*/
- STDQT_METHOD(QueryInterface) (THIS_
+ STDTQT_METHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj) PURE;
@@ -77,7 +77,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* Add a new key/value tuple to our list of strings. You can have
* multiple strings for the same key.
*/
- STDQT_METHOD(AddKeyValue) (THIS_
+ STDTQT_METHOD(AddKeyValue) (THIS_
const char* pKey,
IHXBuffer* pStr) PURE;
@@ -88,7 +88,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* Return an iterator that allows you to iterate through all the
* key/value tuples in our list of strings.
*/
- STDQT_METHOD(GetIter) (THIS_
+ STDTQT_METHOD(GetIter) (THIS_
REF(IHXKeyValueListIter*) pIter) PURE;
@@ -99,7 +99,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* Return an iterator that allows you to iterate through all the
* strings for a particular key.
*/
- STDQT_METHOD(GetIterOneKey) (THIS_
+ STDTQT_METHOD(GetIterOneKey) (THIS_
const char* pKey,
REF(IHXKeyValueListIterOneKey*) pIter) PURE;
@@ -110,7 +110,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* Append all the key/string tuples from another list to this list.
* (You can have duplicate keys.)
*/
- STDQT_METHOD(AppendAllListItems) (THIS_
+ STDTQT_METHOD(AppendAllListItems) (THIS_
IHXKeyValueList* pList) PURE;
/************************************************************************
* Method:
@@ -127,7 +127,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* Purpose:
* Create an empty object that is the same class as the current object.
*/
- STDQT_METHOD(CreateObject) (THIS_
+ STDTQT_METHOD(CreateObject) (THIS_
REF(IHXKeyValueList*) pNewList) PURE;
/************************************************************************
@@ -139,7 +139,7 @@ DECLARE_INTERFACE_(IHXKeyValueList, IUnknown)
* ULONGs and Buffers. You can have duplicate keys, and old data is
* left untouched.
*/
- STDQT_METHOD(ImportValues) (THIS_
+ STDTQT_METHOD(ImportValues) (THIS_
IHXValues* pValues) PURE;
};
@@ -174,7 +174,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIter, IUnknown)
/*
* IUnknown methods
*/
- STDQT_METHOD(QueryInterface) (THIS_
+ STDTQT_METHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj) PURE;
@@ -195,7 +195,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIter, IUnknown)
* list of strings. Strings are returned in same order that they
* were inserted.
*/
- STDQT_METHOD(GetNextPair) (THIS_
+ STDTQT_METHOD(GetNextPair) (THIS_
REF(const char*) pKey,
REF(IHXBuffer*) pStr) PURE;
@@ -206,7 +206,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIter, IUnknown)
* Replaces the value in the key/value tuple that was returned
* in the last call to GetNextPair with a new string.
*/
- STDQT_METHOD(ReplaceCurr) (THIS_
+ STDTQT_METHOD(ReplaceCurr) (THIS_
IHXBuffer* pStr) PURE;
};
@@ -241,7 +241,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIterOneKey, IUnknown)
/*
* IUnknown methods
*/
- STDQT_METHOD(QueryInterface) (THIS_
+ STDTQT_METHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj) PURE;
@@ -263,7 +263,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIterOneKey, IUnknown)
* were inserted.
*
*/
- STDQT_METHOD(GetNextString) (THIS_
+ STDTQT_METHOD(GetNextString) (THIS_
REF(IHXBuffer*) pStr) PURE;
/************************************************************************
@@ -274,7 +274,7 @@ DECLARE_INTERFACE_(IHXKeyValueListIterOneKey, IUnknown)
* in the last call to GetNextString with a new string.
*
*/
- STDQT_METHOD(ReplaceCurr) (THIS_
+ STDTQT_METHOD(ReplaceCurr) (THIS_
IHXBuffer* pStr) PURE;
};
@@ -310,7 +310,7 @@ DECLARE_INTERFACE_(IHXOptions, IUnknown)
/*
* IUnknown methods
*/
- STDQT_METHOD(QueryInterface) (THIS_
+ STDTQT_METHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj) PURE;
@@ -335,7 +335,7 @@ DECLARE_INTERFACE_(IHXOptions, IUnknown)
* the current setting for that option.
*
*/
- STDQT_METHOD(GetOptions) (THIS_
+ STDTQT_METHOD(GetOptions) (THIS_
REF(IHXValues*) pOptions) PURE;
/************************************************************************
@@ -346,7 +346,7 @@ DECLARE_INTERFACE_(IHXOptions, IUnknown)
* whether or not the SetOptionULONG32 call succeeded.
*
*/
- STDQT_METHOD(SetOptionULONG32) (THIS_
+ STDTQT_METHOD(SetOptionULONG32) (THIS_
const char* pName,
ULONG32 ulValue) PURE;
@@ -358,7 +358,7 @@ DECLARE_INTERFACE_(IHXOptions, IUnknown)
* whether or not the SetOptionCString call succeeded.
*
*/
- STDQT_METHOD(SetOptionCString) (THIS_
+ STDTQT_METHOD(SetOptionCString) (THIS_
const char* pName,
IHXBuffer* pValue) PURE;
@@ -370,7 +370,7 @@ DECLARE_INTERFACE_(IHXOptions, IUnknown)
* whether or not the SetOptionBuffer call succeeded.
*
*/
- STDQT_METHOD(SetOptionBuffer) (THIS_
+ STDTQT_METHOD(SetOptionBuffer) (THIS_
const char* pName,
IHXBuffer* pValue) PURE;
};