Mercurial > pidgin.yaz
annotate libpurple/dbus-define-api.h @ 22664:a7ef2c82d125
When reciving our buddy list on MSN, add people to the permit and
deny lists before adding them to the buddylist. This fixes a bug
when our privacy setting is "allow only the people below." There
would be a very brief period of time when the buddy list thought that
the person you just added to your buddy list was blocked. This
didn't seem to matter in Pidgin, but it could matter in other UIs.
*ahem*
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 17 Apr 2008 00:39:01 +0000 |
parents | 32c366eeeb99 |
children |
rev | line source |
---|---|
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1 #error "This is file is not a valid C code" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
2 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
3 /* This file contains some of the macros from other header files as |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
4 function declarations. This does not make sense in C, but it |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
5 provides type information for the dbus-analyze-functions.py |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
6 program, which makes these macros callable by DBUS. */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
7 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
8 /* blist.h */ |
15823 | 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); | |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
16 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
17 /* connection.h */ |
15823 | 18 gboolean PURPLE_CONNECTION_IS_CONNECTED(PurpleConnection *connection); |
19 gboolean PURPLE_CONNECTION_IS_VALID(PurpleConnection *connection); | |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
20 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
21 /* conversation.h */ |
15823 | 22 PurpleConvIm *PURPLE_CONV_IM(const PurpleConversation *conversation); |
23 PurpleConvIm *PURPLE_CONV_CHAT(const PurpleConversation *conversation); | |
15374
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
24 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
25 |