Mercurial > pidgin
annotate src/protocols/sametime/sametime.h @ 12301:39fca2edf7da
[gaim-migrate @ 14605]
I only caught this as I was committing, and besides I forgot to mention what
sadrul's patch did. It puts the emblem for the active status on the accounts
in the Accounts menu (he put them in the Remove menu as well but that felt
wrong to me.)
committer: Tailor Script <tailor@pidgin.im>
| author | Etan Reisner <pidgin@unreliablesource.net> |
|---|---|
| date | Sat, 03 Dec 2005 06:50:41 +0000 |
| parents | 0110fc7c6a8a |
| children | 977ebab0435f |
| rev | line source |
|---|---|
| 10977 | 1 |
| 2 | |
| 3 /* CFLAGS trumps configure values */ | |
| 4 | |
| 5 | |
| 6 /** default active message */ | |
| 7 #ifndef MW_PLUGIN_DEFAULT_ACTIVE_MSG | |
| 8 #define MW_PLUGIN_DEFAULT_ACTIVE_MSG "Talk to me" | |
| 9 #endif | |
| 10 /* "Talk to me" */ | |
| 11 | |
| 12 | |
| 13 /** default away message */ | |
| 14 #ifndef MW_PLUGIN_DEFAULT_AWAY_MSG | |
| 15 #define MW_PLUGIN_DEFAULT_AWAY_MSG "Not here right now" | |
| 16 #endif | |
| 17 /* "Not here right now" */ | |
| 18 | |
| 19 | |
| 20 /** default busy message */ | |
| 21 #ifndef MW_PLUGIN_DEFAULT_BUSY_MSG | |
| 22 #define MW_PLUGIN_DEFAULT_BUSY_MSG "Please do not disturb me" | |
| 23 #endif | |
| 24 /* "Please do not disturb me" */ | |
| 25 | |
| 26 | |
| 27 /** default host for the gaim plugin. You can specialize a build to | |
| 28 default to your server by supplying this at compile time */ | |
| 29 #ifndef MW_PLUGIN_DEFAULT_HOST | |
| 30 #define MW_PLUGIN_DEFAULT_HOST "" | |
| 31 #endif | |
| 32 /* "" */ | |
| 33 | |
| 34 | |
| 35 /** default port for the gaim plugin. You can specialize a build to | |
| 36 default to your server by supplying this at compile time */ | |
| 37 #ifndef MW_PLUGIN_DEFAULT_PORT | |
| 38 #define MW_PLUGIN_DEFAULT_PORT 1533 | |
| 39 #endif | |
| 40 /* 1533 */ | |
| 41 | |
| 42 | |
| 43 /** client id to report to the server. See mwLoginType in meanwhile's | |
| 44 mw_common.h for some sample values */ | |
| 45 #ifndef MW_CLIENT_TYPE_ID | |
| 46 #define MW_CLIENT_TYPE_ID mwLogin_MEANWHILE | |
| 47 #endif | |
| 48 /* mwLogin_MEANWHILE */ | |
| 49 | |
| 50 | |
|
11943
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
51 /** default encoding for the gaim plugin.*/ |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
52 #ifndef MW_PLUGIN_DEFAULT_ENCODING |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
53 #define MW_PLUGIN_DEFAULT_ENCODING "ISO-8859-1" |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
54 #endif |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
55 /* ISO-8859-1 */ |
|
0110fc7c6a8a
[gaim-migrate @ 14234]
Christopher O'Brien <siege@pidgin.im>
parents:
10977
diff
changeset
|
56 |
