11146
|
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
|