Mercurial > pidgin
view plugins/icq/contacts.h @ 1840:00aef397a1fe
[gaim-migrate @ 1850]
reworked some of the proxy stuff so that it's non-blocking now. next thing to do is to get IRC, MSN, Napster, and Jabber to use the new proxy_connect code. After that, Oscar and Yahoo (maybe Zephyr too? not likely)
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Sat, 12 May 2001 01:38:04 +0000 |
| parents | 4c510ca3563f |
| children | 8ed70631ed15 |
line wrap: on
line source
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef _CONTACTS_H #define _CONTACTS_H #include "icq.h" #include "icqtypes.h" typedef struct icq_ContactItem_s { ICQLINK *icqlink; unsigned long uin; int vis_list; int invis_list; unsigned long remote_ip; unsigned long remote_real_ip; unsigned long remote_port; unsigned char tcp_flag; } icq_ContactItem; icq_ContactItem *icq_ContactNew(ICQLINK *link); void icq_ContactDelete(void *pcontact); icq_ContactItem *icq_ContactFind(ICQLINK *link, DWORD cuin); icq_ContactItem *icq_ContactGetFirst(ICQLINK *link); icq_ContactItem *icq_ContactGetNext(icq_ContactItem *pcontact); #endif /* _CONTACTS_H */
