annotate libfaim/aim_global.c @ 196:3042e11c1902
[gaim-migrate @ 206]
Figured out some UUID's, and prepared for their eventual implementation.
committer: Tailor Script <tailor@pidgin.im>
| author |
Eric Warmenhoven <eric@warmenhoven.org> |
| date |
Sun, 30 Apr 2000 00:34:14 +0000 |
| parents |
68b230f8da5f |
| children |
|
| rev |
line source |
|
2
|
1 /*
|
|
|
2 aim_global.c
|
|
|
3
|
|
|
4 These are things that are globally required, but don't fit the
|
|
|
5 naming of the rest of the functions. Namely, the queue ptrs and fds.
|
|
|
6
|
|
|
7 */
|
|
|
8
|
|
|
9 #include "aim.h"
|
|
|
10
|
|
|
11 /* the dreaded global variables... */
|
|
|
12
|
|
|
13 struct login_phase1_struct aim_logininfo;
|
|
|
14
|
|
|
15 /* queue (linked list) pointers */
|
|
|
16 struct command_tx_struct *aim_queue_outgoing = NULL; /* incoming commands */
|
|
|
17 struct command_rx_struct *aim_queue_incoming = NULL; /* outgoing commands */
|