1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 #ifndef __G_TYPE_PRIVATE_H__
18 #define __G_TYPE_PRIVATE_H__
20 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
21 #error "Only <glib-object.h> can be included directly."
29 * @debug_type: Currently only OBJECTS and SIGNALS are supported.
30 * @code_block: Custom debug code.
32 * A convenience macro for debugging GObject.
33 * This macro is only used internally.
36 #define GOBJECT_IF_DEBUG(debug_type, code_block) \
38 if (_g_type_debug_flags & G_TYPE_DEBUG_ ## debug_type) \
41 #else /* !G_ENABLE_DEBUG */
42 #define GOBJECT_IF_DEBUG(debug_type, code_block)
43 #endif /* G_ENABLE_DEBUG */
47 extern GTypeDebugFlags _g_type_debug_flags
;
49 typedef struct _GRealClosure GRealClosure
;
52 GClosureMarshal meta_marshal
;
53 gpointer meta_marshal_data
;
54 GVaClosureMarshal va_meta_marshal
;
55 GVaClosureMarshal va_marshal
;
59 #define G_REAL_CLOSURE(_c) \
60 ((GRealClosure *)G_STRUCT_MEMBER_P ((_c), -G_STRUCT_OFFSET (GRealClosure, closure)))
62 void _g_value_c_init (void); /* sync with gvalue.c */
63 void _g_value_types_init (void); /* sync with gvaluetypes.c */
64 void _g_enum_types_init (void); /* sync with genums.c */
65 void _g_param_type_init (void); /* sync with gparam.c */
66 void _g_boxed_type_init (void); /* sync with gboxed.c */
67 void _g_object_type_init (void); /* sync with gobject.c */
68 void _g_param_spec_types_init (void); /* sync with gparamspecs.c */
69 void _g_value_transforms_init (void); /* sync with gvaluetransform.c */
70 void _g_signal_init (void); /* sync with gsignal.c */
73 gpointer
_g_type_boxed_copy (GType type
,
75 void _g_type_boxed_free (GType type
,
77 void _g_type_boxed_init (GType type
,
78 GBoxedCopyFunc copy_func
,
79 GBoxedFreeFunc free_func
);
81 gboolean
_g_closure_is_void (GClosure
*closure
,
83 gboolean
_g_closure_supports_invoke_va (GClosure
*closure
);
84 void _g_closure_set_va_marshal (GClosure
*closure
,
85 GVaClosureMarshal marshal
);
86 void _g_closure_invoke_va (GClosure
*closure
,
87 GValue
/*out*/ *return_value
,
96 #endif /* __G_TYPE_PRIVATE_H__ */