comparison src/oscar.c @ 283:0f14e6d8a51b

[gaim-migrate @ 293] - Good fun things here. Sometimes I think Adam does things just to make it difficult for me, I swear (j/k :) ). - I moved all the .h files into the faim/ directory because I'm tired of changing faim/aim.h to just aim.h every time Adam makes an update. - libfaim can now send messages much longer than WinAIM or TOC can. But, the length checking code is still in conversation.c, and I haven't changed it yet, mostly because I'm lazy. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 31 May 2000 03:20:11 +0000
parents 918db59d3814
children 6e609d42f767
comparison
equal deleted inserted replaced
282:918db59d3814 283:0f14e6d8a51b
33 #include <stdio.h> 33 #include <stdio.h>
34 #include <time.h> 34 #include <time.h>
35 #include <sys/socket.h> 35 #include <sys/socket.h>
36 #include <sys/stat.h> 36 #include <sys/stat.h>
37 #include "gaim.h" 37 #include "gaim.h"
38 #include "aim.h" 38 #include <aim.h>
39 #include "gnome_applet_mgr.h" 39 #include "gnome_applet_mgr.h"
40 40
41 static int inpa = -1; 41 static int inpa = -1;
42 struct aim_session_t *gaim_sess; 42 struct aim_session_t *gaim_sess;
43 struct aim_conn_t *gaim_conn; 43 struct aim_conn_t *gaim_conn;
484 roominfo->instance, 484 roominfo->instance,
485 userinfo->sn, 485 userinfo->sn,
486 msg); 486 msg);
487 } else if (rendtype == 1) { 487 } else if (rendtype == 1) {
488 /* FIXME : voice chat */ 488 /* FIXME : voice chat */
489 } else {
490 sprintf(debug_buff, "Unknown rendtype %d\n", rendtype);
491 debug_print(debug_buff);
489 } 492 }
490 /* libfaim doesn't do file transfer yet, from what i can tell */ 493 /* libfaim doesn't do file transfer yet, from what i can tell */
491 } 494 }
492 495
493 return 1; 496 return 1;