# HG changeset patch
# User Daniel Atallah <daniel.atallah@gmail.com>
# Date 1162929242 0
# Node ID 8d9a473bbab901061fd166c079b26b1b8619d634
# Parent  71c764f2b1a6f0c9b06b4ea5dbb3b7dfd8752307
[gaim-migrate @ 17697]
wrap functions in extern "C" on when compiling using a C++ compiler

committer: Tailor Script <tailor@pidgin.im>

diff -r 71c764f2b1a6 -r 8d9a473bbab9 libgaim/savedstatuses.h
--- a/libgaim/savedstatuses.h	Tue Nov 07 17:52:01 2006 +0000
+++ b/libgaim/savedstatuses.h	Tue Nov 07 19:54:02 2006 +0000
@@ -58,6 +58,10 @@
 
 #include "status.h"
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**************************************************************************/
 /** @name Saved status subsystem                                          */
 /**************************************************************************/
@@ -405,4 +409,8 @@
 
 /*@}*/
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _GAIM_SAVEDSTATUSES_H_ */