Mercurial > pidgin
changeset 9473:670daf18649b
[gaim-migrate @ 10298]
(09:29:28) nosnilmot: LSchiere: update the structs, prpl api version &
ChangeLog.API following datallah's send_file patch
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 07 Jul 2004 14:02:07 +0000 |
parents | 362e92781b3f |
children | e7b312e90abb |
files | plugins/ChangeLog.API src/protocols/gg/gg.c src/protocols/napster/napster.c src/protocols/novell/novell.c src/protocols/toc/toc.c src/protocols/trepia/trepia.c src/protocols/zephyr/zephyr.c src/prpl.h |
diffstat | 8 files changed, 26 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/ChangeLog.API Wed Jul 07 06:24:58 2004 +0000 +++ b/plugins/ChangeLog.API Wed Jul 07 14:02:07 2004 +0000 @@ -2,7 +2,12 @@ version 0.80cvs: Gaim API: - * Deprecated PRPL numbers removed + * Removed: PRPL numbers : gaim_account_set_protocol(), + gaim_account_get_protocol(), gaim_accounts_find_with_prpl_num, + gaim_prpl_num_to_id(), gaim_prpl_id_to_num(), GaimProtocol + + Protocol Plugin API: v6 + * Added: can_receive_file & send_file to the GaimPluginProtocolInfo struct version 0.79 (06/24/2004): Gaim API:
--- a/src/protocols/gg/gg.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/gg/gg.c Wed Jul 07 14:02:07 2004 +0000 @@ -1,6 +1,6 @@ /* * gaim - Gadu-Gadu Protocol Plugin - * $Id: gg.c 10236 2004-06-28 21:20:36Z thekingant $ + * $Id: gg.c 10298 2004-07-07 14:02:07Z lschiere $ * * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> * @@ -1666,6 +1666,8 @@ NULL, NULL, NULL, + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info =
--- a/src/protocols/napster/napster.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/napster/napster.c Wed Jul 07 14:02:07 2004 +0000 @@ -603,7 +603,9 @@ NULL, NULL, NULL, - NULL + NULL, + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info =
--- a/src/protocols/novell/novell.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/novell/novell.c Wed Jul 07 14:02:07 2004 +0000 @@ -3370,7 +3370,9 @@ NULL, NULL, NULL, - NULL + NULL, + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info = {
--- a/src/protocols/toc/toc.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/toc/toc.c Wed Jul 07 14:02:07 2004 +0000 @@ -2148,7 +2148,9 @@ NULL, NULL, NULL, - NULL + NULL, + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info =
--- a/src/protocols/trepia/trepia.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/trepia/trepia.c Wed Jul 07 14:02:07 2004 +0000 @@ -1250,7 +1250,9 @@ NULL, /* find_blist_chat */ NULL, /* roomlist_get_list */ NULL, /* roomlist_cancel */ - NULL /* roomlist_expand_category */ + NULL, /* roomlist_expand_category */ + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info =
--- a/src/protocols/zephyr/zephyr.c Wed Jul 07 06:24:58 2004 +0000 +++ b/src/protocols/zephyr/zephyr.c Wed Jul 07 14:02:07 2004 +0000 @@ -1615,7 +1615,9 @@ NULL, NULL, NULL, - NULL + NULL, + NULL, /* can_receive_file */ + NULL /* send_file */ }; static GaimPluginInfo info = {
--- a/src/prpl.h Wed Jul 07 06:24:58 2004 +0000 +++ b/src/prpl.h Wed Jul 07 14:02:07 2004 +0000 @@ -300,8 +300,8 @@ /* It's not like we're going to run out of integers for this version number, but we only want to really change it once per release. */ -/* GAIM_PRPL_API_VERSION last changed for version: 0.79 */ -#define GAIM_PRPL_API_VERSION 5 +/* GAIM_PRPL_API_VERSION last changed for version: 0.80 */ +#define GAIM_PRPL_API_VERSION 6 #ifdef __cplusplus extern "C" {