ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/icq-toc icq-toc.c,1.11,1.12 icq.h,1.


From: Colin Leroy <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/icq-toc icq-toc.c,1.11,1.12 icq.h,1.2,1.3
Date: Sun, 23 Mar 2003 07:22:46 -0500

Update of /cvsroot/ayttm/ayttm/modules/icq-toc
In directory subversions:/tmp/cvs-serv10312/modules/icq-toc

Modified Files:
        icq-toc.c icq.h 
Log Message:
avoid namespace collisions


Index: icq-toc.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/icq-toc/icq-toc.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- icq-toc.c   17 Mar 2003 14:44:49 -0000      1.11
+++ icq-toc.c   23 Mar 2003 12:22:43 -0000      1.12
@@ -23,16 +23,22 @@
  */
 
 /*
- * icq-toc.c
- * ICQ implementation
+ * icq.c
+ * icq implementation
  */
+#ifdef __MINGW32__
+#define __IN_PLUGIN__ 1
+#endif
[...1277 lines suppressed...]
 
        sc = g_new0( struct service_callbacks, 1 );
        sc->query_connected = eb_icq_query_connected;
@@ -1188,10 +1220,12 @@
        sc->read_prefs_config = eb_icq_read_prefs_config;
        sc->write_prefs_config = eb_icq_write_prefs_config;
 
-        sc->get_color = eb_toc_get_color;
-        sc->get_smileys = eb_default_smileys;
-
+       sc->get_color = eb_toc_get_color;
+       sc->get_smileys = eb_default_smileys;
        
+       sc->change_group = eb_icq_change_group;
+       sc->add_group = eb_icq_add_group;
+       sc->del_group = eb_icq_del_group;
+       sc->rename_group = eb_icq_rename_group;
        return sc;
 }
-               

Index: icq.h
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/icq-toc/icq.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- icq.h       29 Jan 2003 19:19:21 -0000      1.2
+++ icq.h       23 Mar 2003 12:22:43 -0000      1.3
@@ -23,15 +23,15 @@
  */
 
 /*
- * aim.h
- * Header file for AIM bits.
+ * icq.h
+ * Header file for icq bits.
  */
 
-#ifndef __ICQ_H__
-#define __ICQ_H__
+#ifndef __EB_icq_H__
+#define __EB_icq_H__
  
 #include "service.h"
 
 struct service_callbacks * icq_query_callbacks();
 
-#endif /*__ICQ_H__*/
+#endif /*__icq_H__*/





reply via email to

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