From b880db8491271b4bd4aa87c2dd79b5e3c3dde6cf Mon Sep 17 00:00:00 2001 From: watcherhd Date: Thu, 17 Nov 2011 18:46:23 +0000 Subject: added: ieview, imo2sproxy, skype git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@175 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- imo2sproxy/src/imo2skype/queue.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 imo2sproxy/src/imo2skype/queue.h (limited to 'imo2sproxy/src/imo2skype/queue.h') diff --git a/imo2sproxy/src/imo2skype/queue.h b/imo2sproxy/src/imo2skype/queue.h new file mode 100644 index 0000000..4f42a3b --- /dev/null +++ b/imo2sproxy/src/imo2skype/queue.h @@ -0,0 +1,17 @@ +#ifndef __QUEUE_H__ +#define __QUEUE_H__ + +#include "memlist.h" + +typedef struct +{ + unsigned int uMsgNr; +} QUEUEHDR; + +void Queue_Exit(TYP_LIST *hList, void (*fpFree)(void *pEntry)); +void* Queue_InsertEntry (TYP_LIST *hList, unsigned int cbSize, unsigned int uMsgNr, + void (*fpFree)(void *pEntry)); +BOOL Queue_Remove(TYP_LIST *hList, unsigned int uMsgNr, void (*fpFree)(void *pEntry)); +void *Queue_Find(TYP_LIST *hList, unsigned int uMsgNr); + +#endif -- cgit v1.2.3