comparison src/oscar.c @ 369:cf895313fc50

[gaim-migrate @ 379] Nothing interesting committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 09 Jun 2000 08:06:22 +0000
parents fd3cc0a28d5d
children 86e27f0c6ce5
comparison
equal deleted inserted replaced
368:9bf1f77985d2 369:cf895313fc50
44 44
45 static int inpa = -1; 45 static int inpa = -1;
46 static int paspa = -1; 46 static int paspa = -1;
47 struct aim_session_t *gaim_sess; 47 struct aim_session_t *gaim_sess;
48 struct aim_conn_t *gaim_conn; 48 struct aim_conn_t *gaim_conn;
49 int gaim_caps = AIM_CAPS_CHAT | AIM_CAPS_SENDFILE | AIM_CAPS_GETFILE; 49 int gaim_caps = AIM_CAPS_CHAT | AIM_CAPS_SENDFILE | AIM_CAPS_GETFILE |
50 AIM_CAPS_VOICE | AIM_CAPS_IMIMAGE | AIM_CAPS_BUDDYICON;
50 51
51 GList *oscar_chats = NULL; 52 GList *oscar_chats = NULL;
52 53
53 struct chat_connection *find_oscar_chat(char *name) { 54 struct chat_connection *find_oscar_chat(char *name) {
54 GList *g = oscar_chats; 55 GList *g = oscar_chats;
560 msg); 561 msg);
561 } else if (rendtype == AIM_RENDEZVOUS_FILETRANSFER) { 562 } else if (rendtype == AIM_RENDEZVOUS_FILETRANSFER) {
562 /* libfaim won't tell us that we got this just yet */ 563 /* libfaim won't tell us that we got this just yet */
563 } else if (rendtype == AIM_RENDEZVOUS_FILETRANSFER_GET) { 564 } else if (rendtype == AIM_RENDEZVOUS_FILETRANSFER_GET) {
564 /* nor will it tell us this. but it's still there */ 565 /* nor will it tell us this. but it's still there */
566 } else if (rendtype == AIM_RENDEZVOUS_VOICE) {
567 /* this one libfaim tells us unuseful info about */
565 } else { 568 } else {
566 sprintf(debug_buff, "Unknown rendtype %d\n", rendtype); 569 sprintf(debug_buff, "Unknown rendtype %d\n", rendtype);
567 debug_print(debug_buff); 570 debug_print(debug_buff);
568 } 571 }
569 } 572 }