Author: miguel
Date: 2006-10-17 18:15:48 -0400 (Tue, 17 Oct 2006)
New Revision: 66766

Modified:
   trunk/mono/eglib/ChangeLog
   trunk/mono/eglib/src/Makefile.am
   trunk/mono/eglib/src/glib.h
   trunk/mono/eglib/src/gutf8.c
Log:
Move definitions

Modified: trunk/mono/eglib/ChangeLog
===================================================================
--- trunk/mono/eglib/ChangeLog  2006-10-17 22:14:48 UTC (rev 66765)
+++ trunk/mono/eglib/ChangeLog  2006-10-17 22:15:48 UTC (rev 66766)
@@ -1,5 +1,7 @@
 2006-10-17  Miguel de Icaza  <[EMAIL PROTECTED]>
 
+       * src/glib.h: Move private prototypes elsewhere
+       
        * src/glib.h (g_thread_init): Adding missing brace
        (g_list_next): remove ; from the macro definition.
 

Modified: trunk/mono/eglib/src/Makefile.am
===================================================================
--- trunk/mono/eglib/src/Makefile.am    2006-10-17 22:14:48 UTC (rev 66765)
+++ trunk/mono/eglib/src/Makefile.am    2006-10-17 22:15:48 UTC (rev 66766)
@@ -9,6 +9,7 @@
        ghashtable.c    \
        gmem.c          \
        gmodule.c       \
+       gmodule.h       \
        goutput.c       \
        gstr.c          \
        gslist.c        \

Modified: trunk/mono/eglib/src/glib.h
===================================================================
--- trunk/mono/eglib/src/glib.h 2006-10-17 22:14:48 UTC (rev 66765)
+++ trunk/mono/eglib/src/glib.h 2006-10-17 22:15:48 UTC (rev 66766)
@@ -494,9 +494,7 @@
 } GConvertError;
 
 gunichar2 *g_utf8_to_utf16 (const gchar *str, glong len, glong *items_read, 
glong     *items_written, GError **error);
-glong     utf8_to_utf16_len (const gchar *str, glong len, glong *items_read, 
GError **error);
 gchar     *g_utf16_to_utf8 (const gunichar2 *str, glong len, glong 
*items_read, glong     *items_written, GError **error);
-glong     utf16_to_utf8_len (const gunichar2 *str, glong len, glong 
*items_read, GError **error);
 
 /*
  * Path

Modified: trunk/mono/eglib/src/gutf8.c
===================================================================
--- trunk/mono/eglib/src/gutf8.c        2006-10-17 22:14:48 UTC (rev 66765)
+++ trunk/mono/eglib/src/gutf8.c        2006-10-17 22:15:48 UTC (rev 66766)
@@ -12,6 +12,9 @@
 
 gpointer error_quark = "ERROR";
 
+static glong utf8_to_utf16_len (const gchar *str, glong len, glong 
*items_read, GError **error);
+static glong utf16_to_utf8_len (const gunichar2 *str, glong len, glong 
*items_read, GError **error);
+
 gpointer
 g_convert_error_quark ()
 {

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to