comparison src/dbus-define-api.h @ 11146:1c5398ccbeb0

[gaim-migrate @ 13217] Gaim-DBUS signal export works with DBUS >= 0.35 Various gaim API functions available through DBUS committer: Tailor Script <tailor@pidgin.im>
author Piotr Zielinski <zielaj>
date Fri, 22 Jul 2005 19:47:29 +0000
parents
children 8bda65b88e49
comparison
equal deleted inserted replaced
11145:dbc518c453f2 11146:1c5398ccbeb0
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