updated externals
authorHans Breuer <hans@breuer.org>
Fri, 22 Jun 2001 14:10:33 +0000 (14:10 +0000)
committerHans Breuer <hans@src.gnome.org>
Fri, 22 Jun 2001 14:10:33 +0000 (14:10 +0000)
2001-06-22  Hans Breuer  <hans@breuer.org>

* gobject.def : updated externals

* gobjectnotifyqueue.c : include <string.h> for memset ()

gobject/ChangeLog
gobject/gobject.def
gobject/gobjectnotifyqueue.c

index f7a6581..ac4c7bd 100644 (file)
@@ -1,3 +1,9 @@
+2001-06-22  Hans Breuer  <hans@breuer.org>
+
+       * gobject.def : updated externals
+
+       * gobjectnotifyqueue.c : include <string.h> for memset ()
+
 Thu Jun 21 02:43:10 2001  Tim Janik  <timj@gtk.org>
 
        * gparamspecs.h: s/long/int/ for default_value in enum and flags
index c5371c7..b8c1c68 100644 (file)
@@ -14,6 +14,7 @@ EXPORTS
        g_cclosure_marshal_VOID__BOOLEAN
        g_cclosure_marshal_VOID__INT
        g_cclosure_marshal_VOID__POINTER
+       g_cclosure_marshal_VOID__PARAM
        g_cclosure_marshal_VOID__UINT
        g_cclosure_marshal_VOID__UINT_POINTER
        g_cclosure_marshal_VOID__OBJECT
@@ -48,6 +49,7 @@ EXPORTS
        g_flags_register_static
        g_object_class_find_property
        g_object_class_install_property
+       g_object_class_list_properties
        g_object_freeze_notify
        g_object_connect
        g_object_get
@@ -71,6 +73,7 @@ EXPORTS
        g_object_thaw_notify
        g_object_unref
        g_object_watch_closure
+       g_param_spec_pool_belongings
        g_param_spec_boolean
        g_param_spec_boxed
        g_param_spec_char
@@ -85,6 +88,7 @@ EXPORTS
        g_param_spec_object
        g_param_spec_pointer
        g_param_spec_pool_insert
+       g_param_spec_pool_list
        g_param_spec_pool_lookup
        g_param_spec_pool_remove
        g_param_spec_pool_new
index d510281..940a231 100644 (file)
@@ -19,6 +19,7 @@
 #ifndef __G_NOTIFY_H__
 #define __G_NOTIFY_H__
 
+#include        <string.h> /* memset */
 #include        <gobject/gobject.h>
 
 G_BEGIN_DECLS