Mercurial > pidgin
view plugins/icq/queue.h @ 1220:16ea7a3fdbb6
[gaim-migrate @ 1230]
updates to the ICQ plugin. pixmaps stolen from gnomeicu (in case the name didn't give that away)
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Fri, 08 Dec 2000 21:28:32 +0000 |
| parents | 201ec77f3a60 |
| children | 0ef6603d986e |
line wrap: on
line source
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef _QUEUE_H_ #define _QUEUE_H_ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "icq.h" #include "icqpacket.h" typedef struct udp_item { unsigned char attempts; unsigned long expire; icq_Packet *pack; } icq_UDPQueueItem; void icq_UDPQueueNew(ICQLINK*); void icq_UDPQueueFree(ICQLINK*); void icq_UDPQueuePut(ICQLINK*, icq_Packet*, int); icq_Packet *icq_UDPQueueGet(ICQLINK*); icq_Packet *icq_UDPQueuePeek(ICQLINK*); void icq_UDPQueueDelete(ICQLINK*); void icq_UDPQueueFree(ICQLINK*); void icq_UDPQueueDelSeq(ICQLINK*, WORD); long icq_UDPQueueInterval(ICQLINK *); #endif
