mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
added g_value_set_static_string().
Thu Oct 26 00:30:27 2000 Tim Janik <timj@gtk.org> * gvaluetypes.[hc]: added g_value_set_static_string(). * gboxed.[hc]: const corrections. added g_value_set_static_boxed().
This commit is contained in:
@@ -39,14 +39,16 @@ typedef void (*GBoxedFreeFunc) (gpointer boxed);
|
||||
|
||||
|
||||
/* --- prototypes --- */
|
||||
GBoxed* g_boxed_copy (GType boxed_type,
|
||||
gpointer src_boxed);
|
||||
void g_boxed_free (GType boxed_type,
|
||||
gpointer boxed);
|
||||
void g_value_set_boxed (GValue *value,
|
||||
gpointer boxed);
|
||||
gpointer g_value_get_boxed (GValue *value);
|
||||
gpointer g_value_dup_boxed (GValue *value);
|
||||
GBoxed* g_boxed_copy (GType boxed_type,
|
||||
gconstpointer src_boxed);
|
||||
void g_boxed_free (GType boxed_type,
|
||||
gpointer boxed);
|
||||
void g_value_set_boxed (GValue *value,
|
||||
gconstpointer boxed);
|
||||
void g_value_set_static_boxed (GValue *value,
|
||||
gconstpointer boxed);
|
||||
gpointer g_value_get_boxed (const GValue *value);
|
||||
gpointer g_value_dup_boxed (GValue *value);
|
||||
|
||||
|
||||
/* --- convenience --- */
|
||||
|
Reference in New Issue
Block a user