#include "blist.h"
#include "proxy.h"
#include "plugin.h"
Include dependency graph for prpl.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | _GaimPluginProtocolInfo |
A protocol plugin information structure. More... | |
Basic Protocol Information | |
#define | GAIM_PRPL_DESC(x) |
Default protocol plugin description. | |
#define | GAIM_PROTO_DEFAULT "prpl-oscar" |
Default protocol. | |
enum | GaimProtocol { GAIM_PROTO_TOC = 0, GAIM_PROTO_OSCAR, GAIM_PROTO_YAHOO, GAIM_PROTO_ICQ, GAIM_PROTO_MSN, GAIM_PROTO_IRC, GAIM_PROTO_FTP, GAIM_PROTO_VGATE, GAIM_PROTO_JABBER, GAIM_PROTO_NAPSTER, GAIM_PROTO_ZEPHYR, GAIM_PROTO_GADUGADU, GAIM_PROTO_SAMETIME, GAIM_PROTO_TLEN, GAIM_PROTO_RVP, GAIM_PROTO_BACKRUB, GAIM_PROTO_MOO, GAIM_PROTO_ELVIN, GAIM_PROTO_TREPIA, GAIM_PROTO_BATTLENET, GAIM_PROTO_SSCP, GAIM_PROTO_BLOGGER, GAIM_PROTO_UNTAKEN } |
Protocol types and numbers. More... | |
Defines | |
#define | GAIM_AWAY_CUSTOM _("Custom") |
Custom away message. | |
#define | GAIM_IS_PROTOCOL_PLUGIN(plugin) ((plugin)->info->type == GAIM_PLUGIN_PROTOCOL) |
#define | GAIM_PLUGIN_PROTOCOL_INFO(plugin) ((GaimPluginProtocolInfo *)(plugin)->info->extra_info) |
#define | GAIM_PRPL_API_VERSION 2 |
Typedefs | |
typedef _GaimPluginProtocolInfo | GaimPluginProtocolInfo |
Enumerations | |
enum | GaimConvImFlags { GAIM_CONV_IM_AUTO_RESP = 0x0001, GAIM_CONV_IM_IMAGES = 0x0002 } |
Flags applicable to outgoing/incoming IMs from prpls. More... | |
enum | GaimProtocolOptions { OPT_PROTO_CORRECT_TIME = 0x00000002, OPT_PROTO_UNIQUE_CHATNAME = 0x00000004, OPT_PROTO_CHAT_TOPIC = 0x00000008, OPT_PROTO_NO_PASSWORD = 0x00000010, OPT_PROTO_MAIL_CHECK = 0x00000020, OPT_PROTO_BUDDY_ICON = 0x00000040, OPT_PROTO_IM_IMAGE = 0x00000080, OPT_PROTO_PASSWORD_OPTIONAL = 0x00000100, OPT_PROTO_USE_POINTSIZE = 0x00000200 } |
Protocol options. More... | |
Functions | |
const char * | gaim_prpl_num_to_id (GaimProtocol protocol) |
Returns the plugin ID for a protocol number. | |
GaimProtocol | gaim_prpl_id_to_num (const char *id) |
Returns the plugin number for a protocol ID. | |
GaimPlugin * | gaim_find_prpl (const char *id) |
Finds a protocol plugin structure of the specified type. |
gaim
Gaim is the legal property of its developers, whose names are too numerous to list here. Please refer to the COPYRIGHT file distributed with this source distribution.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Value: "Allows gaim to use the " (x) " protocol.\n\n" \ "Now that you have loaded this protocol, use the " \ "Account Editor to add an account that uses this " \ "protocol. You can access the Account Editor from " \ "the \"Accounts\" button on the login window or " \ "in the \"Tools\" menu in the buddy list window."
|
|
Flags applicable to outgoing/incoming IMs from prpls.
|
|
|
Protocol options. These should all be stuff that some plugins can do and others can't.
|
|
Finds a protocol plugin structure of the specified type.
|
|
Returns the plugin number for a protocol ID.
|
|
Returns the plugin ID for a protocol number.
|