comparison src/connection.h @ 10400:6a043ae92db6

[gaim-migrate @ 11631] I'm about to go home for the holidays, so I figured I'd commit this before I left so someone else could pick up on it while I'm gone. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 19 Dec 2004 20:32:32 +0000
parents 5879593a6a10
children 4829abdc5c35
comparison
equal deleted inserted replaced
10399:aab0c9508318 10400:6a043ae92db6
55 55
56 #include <time.h> 56 #include <time.h>
57 57
58 #include "account.h" 58 #include "account.h"
59 #include "plugin.h" 59 #include "plugin.h"
60 #include "status.h"
60 61
61 typedef struct 62 typedef struct
62 { 63 {
63 void (*connect_progress)(GaimConnection *gc, const char *text, 64 void (*connect_progress)(GaimConnection *gc, const char *text,
64 size_t step, size_t step_count); 65 size_t step, size_t step_count);
128 129
129 /** 130 /**
130 * Logs in to this connection. 131 * Logs in to this connection.
131 * 132 *
132 * @param gc The connection to log in. 133 * @param gc The connection to log in.
134 * @param status The status to login to.
133 * 135 *
134 * @see gaim_connection_disconnect() 136 * @see gaim_connection_disconnect()
135 */ 137 */
136 void gaim_connection_connect(GaimConnection *gc); 138 void gaim_connection_connect(GaimConnection *gc, GaimStatus *status);
137 139
138 /** 140 /**
139 * Registers a connection. 141 * Registers a connection.
140 * 142 *
141 * @param gc The connection to register. 143 * @param gc The connection to register.