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.
| 9268 | 1 | /* |
| 2 | * nmrtf.h | |
| 3 | * | |
| 4 | * Copyright (c) 2004 Novell, Inc. All Rights Reserved. | |
| 5 | * | |
| 6 | * This program is free software; you can redistribute it and/or modify | |
| 7 | * it under the terms of the GNU General Public License as published by | |
| 8 | * the Free Software Foundation; version 2 of the License. | |
| 9 | * | |
| 10 | * This program is distributed in the hope that it will be useful, | |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | * GNU General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU General Public License | |
| 16 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
15435
diff
changeset
|
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 9268 | 18 | * |
| 19 | */ | |
| 20 | ||
| 21 | #ifndef __NMRTF_H__ | |
| 22 | #define __NMRTF_H__ | |
| 23 | ||
| 24 | typedef struct _NMRtfContext NMRtfContext; | |
| 25 | ||
| 12323 | 26 | NMRtfContext *nm_rtf_init(void); |
| 9268 | 27 | char *nm_rtf_strip_formatting(NMRtfContext *ctx, const char *input); |
| 28 | void nm_rtf_deinit(NMRtfContext *ctx); | |
| 29 | ||
| 30 | #endif |