ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ayttm-commits] CVS: ayttm/src away_window.h,1.3,1.4 browser.h,1.2,1.3 c


From: Andy Maloney <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/src away_window.h,1.3,1.4 browser.h,1.2,1.3 console_session.h,1.2,1.3 gtk_eb_html.h,1.2,1.3
Date: Mon, 20 Jan 2003 13:10:13 -0500

Update of /cvsroot/ayttm/ayttm/src
In directory subversions:/tmp/cvs-serv17383/src

Modified Files:
        away_window.h browser.h console_session.h gtk_eb_html.h 
Log Message:
Added ifndef guards

Index: away_window.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/away_window.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- away_window.h       20 Jan 2003 12:33:44 -0000      1.3
+++ away_window.h       20 Jan 2003 18:10:11 -0000      1.4
@@ -19,6 +19,11 @@
  *
  */  
 
+#ifndef __AWAY_WINDOW_H__
+#define __AWAY_WINDOW_H__
+
 void load_away_messages();
 void build_away_menu();
 gchar * get_away_message();
+
+#endif

Index: browser.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/browser.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- browser.h   16 Jan 2003 09:51:04 -0000      1.2
+++ browser.h   20 Jan 2003 18:10:11 -0000      1.3
@@ -1,3 +1,25 @@
+/*
+ * Ayttm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ */  
+
+#ifndef __BROWSER_H__
+#define __BROWSER_H__
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -23,4 +45,6 @@
 
 #ifdef __cplusplus
 } /* extern "C" */
+#endif
+
 #endif

Index: console_session.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/console_session.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- console_session.h   16 Jan 2003 09:51:04 -0000      1.2
+++ console_session.h   20 Jan 2003 18:10:11 -0000      1.3
@@ -1,3 +1,27 @@
-#include <plugin_api.h>
+/*
+ * Ayttm
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *
+ */  
+
+#ifndef __CONSOLE_SESSION_H__
+#define __CONSOLE_SESSION_H__
+
+#include "plugin_api.h"
 
 void console_session_init(void *data, int source, eb_input_condition 
condition);
+
+#endif

Index: gtk_eb_html.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/src/gtk_eb_html.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gtk_eb_html.h       16 Jan 2003 13:11:01 -0000      1.2
+++ gtk_eb_html.h       20 Jan 2003 18:10:11 -0000      1.3
@@ -19,8 +19,11 @@
  *
  */
 
-#include<gtk/gtk.h>
-#include"extgtktext.h"
+#ifndef __GTK_EB_HTML_H__
+#define __GTK_EB_HTML_H__
+
+#include <gtk/gtk.h>
+#include "extgtktext.h"
 
 void gtk_eb_html_init(ExtGtkText* widget);
 #if defined(__MINGW32__) && defined(__IN_PLUGIN__)
@@ -29,4 +32,6 @@
 #else
 extern void gtk_eb_html_add(ExtGtkText * widget, char * text,
                int ignore_bgcolor, int ignore_fgcolor, int ignore_font );
+#endif
+
 #endif





reply via email to

[Prev in Thread] Current Thread [Next in Thread]