diff src/connection.h @ 5571:113090160626

[gaim-migrate @ 5973] Here you go, faceprint. gaim_connection_notice(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 30 May 2003 23:03:02 +0000
parents 187c740f2a4e
children 1d140b31d4b3
line wrap: on
line diff
--- a/src/connection.h	Fri May 30 22:00:50 2003 +0000
+++ b/src/connection.h	Fri May 30 23:03:02 2003 +0000
@@ -46,6 +46,7 @@
 	void (*connected)(GaimConnection *gc);
 	void (*request_pass)(GaimConnection *gc);
 	void (*disconnected)(GaimConnection *gc, const char *reason);
+	void (*notice)(GaimConnection *gc, const char *text);
 
 } GaimConnectionUiOps;
 
@@ -178,6 +179,14 @@
 									 size_t step, size_t count);
 
 /**
+ * Displays a connection-specific notice.
+ *
+ * @param gc   The connection.
+ * @param text The notice text.
+ */
+void gaim_connection_notice(GaimConnection *gc, const char *text);
+
+/**
  * Closes a connection with an error.
  *
  * @param gc     The connection.