Wed, 13 May 2009 20:29:03 +0000
Support custom smileys in MUCs (when all participants support BoB and a maximum
of 10 participants are in the chat).
Always announce support for BoB, since disable custom smileys will still turn
off fetching them, and BoB can be used for other purposes further on.
| 3630 | 1 | #ifndef _SYS_UTSNAME_H |
| 2 | #define _SYS_UTSNAME_H | |
| 3 | ||
| 4 | #ifdef __cplusplus | |
| 5 | extern "C" { | |
| 6 | #endif | |
| 7 | ||
| 8 | struct utsname | |
| 9 | { | |
| 10 | char sysname[20]; | |
| 11 | char nodename[20]; | |
| 12 | char release[20]; | |
| 13 | char version[20]; | |
| 14 | char machine[20]; | |
| 15 | }; | |
| 16 | ||
| 23074 | 17 | int jabber_win32_uname (struct utsname *); |
| 18 | #define uname(utsname) jabber_win32_uname(utsname) | |
| 3630 | 19 | |
| 20 | #ifdef __cplusplus | |
| 21 | } | |
| 22 | #endif | |
| 23 | ||
| 24 | #endif |