Readded GFreeFunc, g_node_insert_after and g_find_program_in_path resp.,

2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
	g_node_insert_after and g_find_program_in_path resp., which
	mysteriously disappeared during the glib.h dissection.
This commit is contained in:
Sebastian Wilhelmi 2000-10-13 08:16:54 +00:00 committed by Sebastian Wilhelmi
parent 5a2c122afd
commit 24b4bfbea1
14 changed files with 60 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -1,3 +1,9 @@
2000-10-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glibconfig.h.win32.in: Adapted accordingly to header separation

View File

@ -84,6 +84,9 @@ GNode* g_node_insert (GNode *parent,
GNode* g_node_insert_before (GNode *parent,
GNode *sibling,
GNode *node);
GNode* g_node_insert_after (GNode *parent,
GNode *sibling,
GNode *node);
GNode* g_node_prepend (GNode *parent,
GNode *node);
guint g_node_n_nodes (GNode *root,

View File

@ -76,6 +76,7 @@ typedef guint (*GHashFunc) (gconstpointer key);
typedef void (*GHFunc) (gpointer key,
gpointer value,
gpointer user_data);
typedef void (*GFreeFunc) (gpointer data);
/* Define some mathematical constants that aren't available
* symbolically in some strict ISO C implementations.

View File

@ -183,6 +183,8 @@ typedef void (*GVoidFunc) (void);
*/
void g_atexit (GVoidFunc func);
/* Look for an executable in PATH, following execvp() rules */
gchar* g_find_program_in_path (const gchar *program);
/* Bit tests
*/

View File

@ -84,6 +84,9 @@ GNode* g_node_insert (GNode *parent,
GNode* g_node_insert_before (GNode *parent,
GNode *sibling,
GNode *node);
GNode* g_node_insert_after (GNode *parent,
GNode *sibling,
GNode *node);
GNode* g_node_prepend (GNode *parent,
GNode *node);
guint g_node_n_nodes (GNode *root,

View File

@ -76,6 +76,7 @@ typedef guint (*GHashFunc) (gconstpointer key);
typedef void (*GHFunc) (gpointer key,
gpointer value,
gpointer user_data);
typedef void (*GFreeFunc) (gpointer data);
/* Define some mathematical constants that aren't available
* symbolically in some strict ISO C implementations.

View File

@ -183,6 +183,8 @@ typedef void (*GVoidFunc) (void);
*/
void g_atexit (GVoidFunc func);
/* Look for an executable in PATH, following execvp() rules */
gchar* g_find_program_in_path (const gchar *program);
/* Bit tests
*/