diff src/protocols/oscar/family_userlookup.c @ 13239:f260d319bbbc

[gaim-migrate @ 15605] Renaming a bunch of structs and typedefs to use the same naming scheme as the rest of Gaim committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 12 Feb 2006 16:02:05 +0000
parents f2431a7e33aa
children 87a7c3077c19
line wrap: on
line diff
--- a/src/protocols/oscar/family_userlookup.c	Sun Feb 12 15:27:11 2006 +0000
+++ b/src/protocols/oscar/family_userlookup.c	Sun Feb 12 16:02:05 2006 +0000
@@ -32,7 +32,7 @@
  *
  * XXX can this be integrated with the rest of the error handling?
  */
-static int error(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
+static int error(OscarSession *sess, aim_module_t *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs)
 {
 	int ret = 0;
 	aim_rxcallback_t userfunc;
@@ -59,9 +59,9 @@
  * Subtype 0x0002
  *
  */
-faim_export int aim_search_address(aim_session_t *sess, aim_conn_t *conn, const char *address)
+faim_export int aim_search_address(OscarSession *sess, OscarConnection *conn, const char *address)
 {
-	aim_frame_t *fr;
+	FlapFrame *fr;
 	aim_snacid_t snacid;
 
 	if (!sess || !conn || !address)
@@ -84,7 +84,7 @@
  * Subtype 0x0003
  *
  */
-static int reply(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
+static int reply(OscarSession *sess, aim_module_t *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs)
 {
 	int j = 0, m, ret = 0;
 	aim_tlvlist_t *tlvlist;
@@ -127,7 +127,7 @@
 	return ret;
 }
 
-static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
+static int snachandler(OscarSession *sess, aim_module_t *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs)
 {
 
 	if (snac->subtype == 0x0001)
@@ -138,7 +138,7 @@
 	return 0;
 }
 
-faim_internal int search_modfirst(aim_session_t *sess, aim_module_t *mod)
+faim_internal int search_modfirst(OscarSession *sess, aim_module_t *mod)
 {
 
 	mod->family = 0x000a;