- Timestamp:
- 2009-11-25T00:45:27Z (15 years ago)
- Branches:
- master
- Children:
- 487f555
- Parents:
- 0ac1a375
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
r0ac1a375 re5d8d21 23 23 24 24 #include "bitlbee.h" 25 #include "help.h" 25 26 26 27 #include <stdarg.h> … … 475 476 476 477 g_free( q ); 478 479 return pqad; 477 480 } 478 481 … … 535 538 struct prpl funcs; 536 539 GList *prots; 540 GString *help; 537 541 538 542 if( B_EV_IO_READ != PURPLE_INPUT_READ || … … 574 578 funcs.handle_cmp = g_strcasecmp; 575 579 580 help = g_string_new("BitlBee libpurple module supports the following IM protocols:\n"); 581 576 582 for( prots = purple_plugins_get_protocols(); prots; prots = prots->next ) 577 583 { … … 584 590 ret->name += 5; 585 591 register_protocol( ret ); 592 593 g_string_append_printf( help, "\n* %s (%s)", ret->name, prot->info->name ); 586 594 587 595 if( g_strcasecmp( prot->info->id, "prpl-aim" ) == 0 ) … … 593 601 } 594 602 } 595 } 603 604 help_add_mem( &global.help, "purple", help->str ); 605 g_string_free( help, TRUE ); 606 }
Note: See TracChangeset
for help on using the changeset viewer.