comparison libpurple/dbus-define-api.h @ 15374:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children 32c366eeeb99
comparison
equal deleted inserted replaced
15373:f79e0f4df793 15374:5fe8042783c1
1 #error "This is file is not a valid C code"
2
3 /* This file contains some of the macros from other header files as
4 function declarations. This does not make sense in C, but it
5 provides type information for the dbus-analyze-functions.py
6 program, which makes these macros callable by DBUS. */
7
8 /* blist.h */
9 gboolean GAIM_BLIST_NODE_IS_CHAT(GaimBlistNode *node);
10 gboolean GAIM_BLIST_NODE_IS_BUDDY(GaimBlistNode *node);
11 gboolean GAIM_BLIST_NODE_IS_CONTACT(GaimBlistNode *node);
12 gboolean GAIM_BLIST_NODE_IS_GROUP(GaimBlistNode *node);
13 gboolean GAIM_BUDDY_IS_ONLINE(GaimBuddy *buddy);
14 gboolean GAIM_BLIST_NODE_HAS_FLAG(GaimBlistNode *node, int flags);
15 gboolean GAIM_BLIST_NODE_SHOULD_SAVE(GaimBlistNode *node);
16
17 /* connection.h */
18 gboolean GAIM_CONNECTION_IS_CONNECTED(GaimConnection *connection);
19 gboolean GAIM_CONNECTION_IS_VALID(GaimConnection *connection);
20
21 /* conversation.h */
22 GaimConvIm *GAIM_CONV_IM(const GaimConversation *conversation);
23 GaimConvIm *GAIM_CONV_CHAT(const GaimConversation *conversation);
24
25