Mercurial > pidgin
annotate libfaim/aim_logoff.c @ 727:8b9f0537f473
[gaim-migrate @ 737]
Added a few more little pixmaps to the file menu.
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Sat, 19 Aug 2000 21:21:59 +0000 |
parents | 9d258a0aa560 |
children |
rev | line source |
---|---|
2 | 1 /* |
2 * aim_logoff.c | |
3 * | |
4 * | |
5 */ | |
6 | |
283
0f14e6d8a51b
[gaim-migrate @ 293]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
237
diff
changeset
|
7 #include <faim/aim.h> |
2 | 8 |
9 /* | |
10 * aim_logoff() | |
11 * | |
12 * Closes -ALL- open connections. | |
13 * | |
14 */ | |
237 | 15 int aim_logoff(struct aim_session_t *sess) |
2 | 16 { |
237 | 17 aim_connrst(sess); /* in case we want to connect again */ |
2 | 18 |
19 return 0; | |
20 | |
21 } |