mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 14:36:13 +01:00
Add g_error functions.
2000-07-14 Tor Lillqvist <tml@iki.fi> * glib.def: Add g_error functions. * makefile.mingw.in: Add gbacktrace.o. * gbacktrace.c: No need to include <process.h>.
This commit is contained in:
parent
eafc443929
commit
f4e591eb7b
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -1,3 +1,11 @@
|
||||
2000-07-14 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib.def: Add g_error functions.
|
||||
|
||||
* makefile.mingw.in: Add gbacktrace.o.
|
||||
|
||||
* gbacktrace.c: No need to include <process.h>.
|
||||
|
||||
2000-07-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* glib.h: #include <gerror.h>
|
||||
|
@ -62,7 +62,6 @@
|
||||
#ifdef G_OS_WIN32
|
||||
# define STRICT /* Strict typing, please */
|
||||
# include <windows.h>
|
||||
# include <process.h> /* For _getpid() */
|
||||
#endif
|
||||
|
||||
#ifndef NO_FD_SET
|
||||
|
7
glib.def
7
glib.def
@ -28,6 +28,7 @@ EXPORTS
|
||||
g_cache_new
|
||||
g_cache_remove
|
||||
g_cache_value_foreach
|
||||
g_clear_error
|
||||
g_completion_add_items
|
||||
g_completion_clear_items
|
||||
g_completion_complete
|
||||
@ -90,6 +91,11 @@ EXPORTS
|
||||
g_direct_equal
|
||||
g_direct_hash
|
||||
g_dirname
|
||||
g_error_copy
|
||||
g_error_free
|
||||
g_error_matches
|
||||
g_error_new
|
||||
g_error_new_literal
|
||||
g_filename_from_utf8
|
||||
g_filename_to_utf8
|
||||
g_free
|
||||
@ -324,6 +330,7 @@ EXPORTS
|
||||
g_scanner_thaw_symbol_table
|
||||
g_scanner_unexp_token
|
||||
g_scanner_warn
|
||||
g_set_error
|
||||
g_set_error_handler
|
||||
g_set_message_handler
|
||||
g_set_prgname
|
||||
|
@ -62,7 +62,6 @@
|
||||
#ifdef G_OS_WIN32
|
||||
# define STRICT /* Strict typing, please */
|
||||
# include <windows.h>
|
||||
# include <process.h> /* For _getpid() */
|
||||
#endif
|
||||
|
||||
#ifndef NO_FD_SET
|
||||
|
@ -28,6 +28,7 @@ EXPORTS
|
||||
g_cache_new
|
||||
g_cache_remove
|
||||
g_cache_value_foreach
|
||||
g_clear_error
|
||||
g_completion_add_items
|
||||
g_completion_clear_items
|
||||
g_completion_complete
|
||||
@ -90,6 +91,11 @@ EXPORTS
|
||||
g_direct_equal
|
||||
g_direct_hash
|
||||
g_dirname
|
||||
g_error_copy
|
||||
g_error_free
|
||||
g_error_matches
|
||||
g_error_new
|
||||
g_error_new_literal
|
||||
g_filename_from_utf8
|
||||
g_filename_to_utf8
|
||||
g_free
|
||||
@ -324,6 +330,7 @@ EXPORTS
|
||||
g_scanner_thaw_symbol_table
|
||||
g_scanner_unexp_token
|
||||
g_scanner_warn
|
||||
g_set_error
|
||||
g_set_error_handler
|
||||
g_set_message_handler
|
||||
g_set_prgname
|
||||
|
@ -41,6 +41,7 @@ install : all
|
||||
glib_OBJECTS = \
|
||||
garray.o \
|
||||
gasyncqueue.o \
|
||||
gbacktrace.o \
|
||||
gcache.o \
|
||||
gcompletion.o \
|
||||
gdataset.o \
|
||||
|
@ -41,6 +41,7 @@ install : all
|
||||
glib_OBJECTS = \
|
||||
garray.o \
|
||||
gasyncqueue.o \
|
||||
gbacktrace.o \
|
||||
gcache.o \
|
||||
gcompletion.o \
|
||||
gdataset.o \
|
||||
|
Loading…
Reference in New Issue
Block a user