diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-08 06:57:14 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-08 06:57:14 +0000 |
commit | 4a0631399b72ff7a62ffc2da69150551e990e0d9 (patch) | |
tree | 636747c4083923dc96ebb8f0d06019746493b0da /plugins/UserInfoEx/src/mir_contactqueue.h | |
parent | 88a14e8dc56bb77b09e52c8aebe5cd6f47039366 (diff) |
UserInfoEx:
- Warnings fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14857 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx/src/mir_contactqueue.h')
-rw-r--r-- | plugins/UserInfoEx/src/mir_contactqueue.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/UserInfoEx/src/mir_contactqueue.h b/plugins/UserInfoEx/src/mir_contactqueue.h index efd9fbd1dd..59a47a0f4c 100644 --- a/plugins/UserInfoEx/src/mir_contactqueue.h +++ b/plugins/UserInfoEx/src/mir_contactqueue.h @@ -63,7 +63,7 @@ public: void RemoveAll(MCONTACT hContact);
// This function removes all queue items for the hContact considering the correct parameter.
- void RemoveAllConsiderParam(MCONTACT hContact, PVOID param);
+ void RemoveAllConsiderParam(MCONTACT hContact, void *param);
/**
* This method adds the desired new item.
@@ -75,7 +75,7 @@ public: * @retval TRUE - The item is added to the queue successfully.
* @retval FALSE - The item is not added to the queue.
**/
- BOOL Add(int waitTime, MCONTACT hContact, PVOID param = NULL);
+ BOOL Add(int waitTime, MCONTACT hContact, void *param = NULL);
/**
* This method adds the desired new item only, if the queue does not yet contain
@@ -88,7 +88,7 @@ public: * @retval TRUE - The item is added to the queue successfully.
* @retval FALSE - The item is not added to the queue.
**/
- BOOL AddIfDontHave(int waitTime, MCONTACT hContact, PVOID param = NULL);
+ BOOL AddIfDontHave(int waitTime, MCONTACT hContact, void *param = NULL);
/**
* This method removes all existing queue items for the contact and adds a new queue item
@@ -101,7 +101,7 @@ public: *
* @return nothing
**/
- BOOL AddUnique(int waitTime, MCONTACT hContact, PVOID param = NULL);
+ BOOL AddUnique(int waitTime, MCONTACT hContact, void *param = NULL);
/**
* This method removes all existing queue items for the contact with the same parameter as @e param
@@ -114,7 +114,7 @@ public: *
* @return nothing
**/
- BOOL AddUniqueConsiderParam (int waitTime, MCONTACT hContact, PVOID param = NULL);
+ BOOL AddUniqueConsiderParam (int waitTime, MCONTACT hContact, void *param = NULL);
// This method resumes the worker thread and immitiatly goes on with the next entry.
void ContinueWithNext();
@@ -162,7 +162,7 @@ private: * @retval TRUE - The item is added to the queue successfully.
* @retval FALSE - The item is not added to the queue.
**/
- BOOL InternalAdd(int waitTime, MCONTACT hContact, PVOID param);
+ BOOL InternalAdd(int waitTime, MCONTACT hContact, void *param);
void Remove(int idx);
};
|