diff pidgin/gtklog.h @ 15500:d75099d2567e

gaim_gtk to pidgin. I hope
author Sean Egan <seanegan@gmail.com>
date Sat, 03 Feb 2007 07:23:11 +0000
parents 5fe8042783c1
children 760ef6d78d2d
line wrap: on
line diff
--- a/pidgin/gtklog.h	Sat Feb 03 01:08:41 2007 +0000
+++ b/pidgin/gtklog.h	Sat Feb 03 07:23:11 2007 +0000
@@ -22,20 +22,20 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
-#ifndef _GAIM_GTKLOG_H_
-#define _GAIM_GTKLOG_H_
+#ifndef _PIDGINLOG_H_
+#define _PIDGINLOG_H_
 
 #include "gtkgaim.h"
 #include "log.h"
 
 #include "account.h"
 
-typedef struct _GaimGtkLogViewer GaimGtkLogViewer;
+typedef struct _PidginLogViewer PidginLogViewer;
 
 /**
  * A GTK+ Log Viewer.  You can look at logs with it.
  */
-struct _GaimGtkLogViewer {
+struct _PidginLogViewer {
 	GList *logs;                 /**< The list of logs viewed in this viewer   */
 
 	GtkWidget        *window;    /**< The viewer's window                      */
@@ -51,10 +51,10 @@
 
 
 
-void gaim_gtk_log_show(GaimLogType type, const char *screenname, GaimAccount *account);
-void gaim_gtk_log_show_contact(GaimContact *contact);
+void pidgin_log_show(GaimLogType type, const char *screenname, GaimAccount *account);
+void pidgin_log_show_contact(GaimContact *contact);
 
-void gaim_gtk_syslog_show(void);
+void pidgin_syslog_show(void);
 
 /**************************************************************************/
 /** @name GTK+ Log Subsystem                                              */
@@ -64,19 +64,19 @@
 /**
  * Initializes the GTK+ log subsystem.
  */
-void gaim_gtk_log_init(void);
+void pidgin_log_init(void);
 
 /**
  * Returns the GTK+ log subsystem handle.
  *
  * @return The GTK+ log subsystem handle.
  */
-void *gaim_gtk_log_get_handle(void);
+void *pidgin_log_get_handle(void);
 
 /**
  * Uninitializes the GTK+ log subsystem.
  */
-void gaim_gtk_log_uninit(void);
+void pidgin_log_uninit(void);
 
 /*@}*/