comparison libgaim/protocols/oscar/oscar.h @ 14918:f1e353fa21de

[gaim-migrate @ 17690] gbooleanize some things. No functionality change. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 07 Nov 2006 02:53:42 +0000
parents fb67a345056e
children 57dcc53e77a4
comparison
equal deleted inserted replaced
14917:f9acffc89b18 14918:f1e353fa21de
476 476
477 struct { 477 struct {
478 struct aim_userinfo_s *userinfo; 478 struct aim_userinfo_s *userinfo;
479 struct userinfo_node *torequest; 479 struct userinfo_node *torequest;
480 struct userinfo_node *requested; 480 struct userinfo_node *requested;
481 int waiting_for_response; 481 gboolean waiting_for_response;
482 } locate; 482 } locate;
483 483
484 /* Server-stored information (ssi) */ 484 /* Server-stored information (ssi) */
485 struct { 485 struct {
486 int received_data; 486 gboolean received_data;
487 guint16 numitems; 487 guint16 numitems;
488 struct aim_ssi_item *official; 488 struct aim_ssi_item *official;
489 struct aim_ssi_item *local; 489 struct aim_ssi_item *local;
490 struct aim_ssi_tmp *pending; 490 struct aim_ssi_tmp *pending;
491 time_t timestamp; 491 time_t timestamp;
492 int waiting_for_ack; 492 gboolean waiting_for_ack;
493 } ssi; 493 } ssi;
494 494
495 /* TODO: Implement this as a HashTable for HUGE speed improvement! */ 495 /* TODO: Implement this as a HashTable for HUGE speed improvement! */
496 GSList *handlerlist; 496 GSList *handlerlist;
497 497