diff libfaim/aim_auth.c @ 840:595ac7759563

[gaim-migrate @ 850] lots of (mostly useless for us) libfaim changes. should help portability, but it was always portable between unices.... stupid win32ers. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 04 Sep 2000 23:37:32 +0000
parents e4c34ca88d9b
children 920c86b753d7
line wrap: on
line diff
--- a/libfaim/aim_auth.c	Mon Sep 04 01:15:38 2000 +0000
+++ b/libfaim/aim_auth.c	Mon Sep 04 23:37:32 2000 +0000
@@ -8,9 +8,9 @@
 #include <faim/aim.h> 
 
 /* this just pushes the passed cookie onto the passed connection -- NO SNAC! */
-int aim_auth_sendcookie(struct aim_session_t *sess, 
-			struct aim_conn_t *conn, 
-			u_char *chipsahoy)
+faim_export int aim_auth_sendcookie(struct aim_session_t *sess, 
+				    struct aim_conn_t *conn, 
+				    unsigned char *chipsahoy)
 {
   struct command_tx_struct *newpacket;
   int curbyte=0;
@@ -29,8 +29,8 @@
   return aim_tx_enqueue(sess, newpacket);
 }
 
-u_long aim_auth_clientready(struct aim_session_t *sess,
-			    struct aim_conn_t *conn)
+faim_export unsigned long aim_auth_clientready(struct aim_session_t *sess,
+					       struct aim_conn_t *conn)
 {
   struct command_tx_struct *newpacket;
   int curbyte = 0;
@@ -68,9 +68,9 @@
   return (sess->snac_nextid++);
 }
 
-u_long aim_auth_changepasswd(struct aim_session_t *sess,
-			     struct aim_conn_t *conn, 
-			     char *new, char *current)
+faim_export unsigned long aim_auth_changepasswd(struct aim_session_t *sess,
+						struct aim_conn_t *conn, 
+						char *new, char *current)
 {
   struct command_tx_struct *newpacket;
   int i;