Mercurial > pidgin.yaz
annotate libpurple/dbus-define-api.h @ 24746:8e75a1525156
Grab the "Who can contact me? Only people on my buddy list?" and the
"Who can see when I'm online? Only people on my buddy list?" settings
from the server and activate your privacy setting so that the values
that you've set using the official myspace IM client will also apply
when you're logged in with Pidgin.
I really don't think this should be necessary at a protocol level.
It's just stupid. Why wouldn't the server do this for us?
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 16 Dec 2008 23:39:03 +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 |