diff src/debug.h @ 5944:158196b2db19

[gaim-migrate @ 6385] Added #ifdef __cplusplus lines so that things will link right with C++. Also added some doxygen comment blocks that didn't previously exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 06:40:13 +0000
parents 740303e8425b
children 565339a6eb86
line wrap: on
line diff
--- a/src/debug.h	Mon Jun 23 02:00:15 2003 +0000
+++ b/src/debug.h	Mon Jun 23 06:40:13 2003 +0000
@@ -49,6 +49,13 @@
 
 } GaimDebugUiOps;
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**************************************************************************/
+/** @name Debug API                                                       */
+/**************************************************************************/
 /**
  * Outputs debug information.
  *
@@ -86,6 +93,13 @@
  */
 void debug_printf(const char *fmt, ...);
 
+/*@}*/
+
+/**************************************************************************/
+/** @name UI Registration Functions                                       */
+/**************************************************************************/
+/*@{*/
+
 /**
  * Sets the UI operations structure to be used when outputting debug
  * information.
@@ -102,4 +116,10 @@
  */
 GaimDebugUiOps *gaim_get_debug_ui_ops(void);
 
+/*@}*/
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* _GAIM_DEBUG_H_ */