diff plugins/icq/contacts.h @ 1152:201ec77f3a60

[gaim-migrate @ 1162] icq. whoop de doo committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 28 Nov 2000 02:22:42 +0000
parents
children 4c510ca3563f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/icq/contacts.h	Tue Nov 28 02:22:42 2000 +0000
@@ -0,0 +1,25 @@
+/* -*- 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_ContItem
+{
+  ICQLINK *icqlink;
+  unsigned long uin;
+  int vis_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 */