dbus-define-api.h
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 PURPLE_BLIST_NODE_IS_CHAT(PurpleBlistNode *node);
10 gboolean PURPLE_BLIST_NODE_IS_BUDDY(PurpleBlistNode *node);
11 gboolean PURPLE_BLIST_NODE_IS_CONTACT(PurpleBlistNode *node);
12 gboolean PURPLE_BLIST_NODE_IS_GROUP(PurpleBlistNode *node);
13 gboolean PURPLE_BUDDY_IS_ONLINE(PurpleBuddy *buddy);
14 gboolean PURPLE_BLIST_NODE_HAS_FLAG(PurpleBlistNode *node, int flags);
15 gboolean PURPLE_BLIST_NODE_SHOULD_SAVE(PurpleBlistNode *node);
16 
17 /* connection.h */
19 gboolean PURPLE_CONNECTION_IS_VALID(PurpleConnection *connection);
20 
21 /* conversation.h */
22 PurpleConvIm *PURPLE_CONV_IM(const PurpleConversation *conversation);
23 PurpleConvIm *PURPLE_CONV_CHAT(const PurpleConversation *conversation);
24 
25 
A Buddy list node.
Definition: blist.h:124
#define PURPLE_CONNECTION_IS_VALID(gc)
Checks if gc is still a valid pointer to a gc.
Definition: connection.h:572
#define PURPLE_CONNECTION_IS_CONNECTED(gc)
Returns TRUE if the account is connected, otherwise returns FALSE.
Definition: connection.h:396
A buddy.
Definition: blist.h:138
Data specific to Instant Messages.
Definition: conversation.h:255
A core representation of a conversation between two or more people.
Definition: conversation.h:335