mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-09 20:35:49 +01:00
turn this into a GType, so negating it works on 64bit platforms.
Fri Jan 4 04:36:46 2002 Tim Janik <timj@gtk.org> * gtype.h (G_TYPE_FLAG_RESERVED_ID_BIT): turn this into a GType, so negating it works on 64bit platforms.
This commit is contained in:
parent
bd82887a67
commit
530f899daa
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jan 4 04:36:46 2002 Tim Janik <timj@gtk.org>
|
||||||
|
|
||||||
|
* gtype.h (G_TYPE_FLAG_RESERVED_ID_BIT): turn this into a GType,
|
||||||
|
so negating it works on 64bit platforms.
|
||||||
|
|
||||||
2001-12-21 Tor Lillqvist <tml@iki.fi>
|
2001-12-21 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* gobject.def: Add g_signal_get_invocation_hint.
|
* gobject.def: Add g_signal_get_invocation_hint.
|
||||||
|
@ -372,7 +372,7 @@ G_CONST_RETURN gchar* g_type_name_from_class (GTypeClass *g_class);
|
|||||||
# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt))
|
# define _G_TYPE_CIT(ip, gt) (g_type_check_instance_is_a ((GTypeInstance*) ip, gt))
|
||||||
# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt))
|
# define _G_TYPE_CCT(cp, gt) (g_type_check_class_is_a ((GTypeClass*) cp, gt))
|
||||||
#endif /* !__GNUC__ */
|
#endif /* !__GNUC__ */
|
||||||
#define G_TYPE_FLAG_RESERVED_ID_BIT (1 << 0)
|
#define G_TYPE_FLAG_RESERVED_ID_BIT ((GType) (1 << 0))
|
||||||
extern GTypeDebugFlags _g_type_debug_flags;
|
extern GTypeDebugFlags _g_type_debug_flags;
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user