diff src/protocols/msn/utils.h @ 6358:8ba58b296cc1

[gaim-migrate @ 6862] This should fix a problem I encountered when I realized again that Qt sucks and likes to crash when I have certain tags not closed. The format string conversion code in MSN was taken from the old MSN prpl, and that code didn't close tags. This should fix that problem. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 03 Aug 2003 02:16:15 +0000
parents e2e53316a21d
children b7e113a59b51
line wrap: on
line diff
--- a/src/protocols/msn/utils.h	Sat Aug 02 15:27:00 2003 +0000
+++ b/src/protocols/msn/utils.h	Sun Aug 03 02:16:15 2003 +0000
@@ -47,10 +47,12 @@
 /**
  * Parses the MSN message formatting into a format compatible with Gaim.
  *
- * @param mime The mime header with the formatting.
+ * @param mime     The mime header with the formatting.
+ * @param pre_ret  The returned prefix string.
+ * @param post_ret The returned postfix string.
  *
  * @return The new message.
  */
-char *msn_parse_format(const char *mime);
+void msn_parse_format(const char *mime, char **pre_ret, char **post_ret);
 
 #endif /* _MSN_UTILS_H_ */