diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-05 18:09:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-05 18:09:02 (GMT) |
commit | b15f45921eea3dda27a4f03c9928fbd9c6418a54 (patch) | |
tree | 2f2e1839c045abaf24491f0cdbf1e7762447053c /plugins/elf | |
parent | 50dcb7b1f40bb9e66d4872a7eebd364c6ea11125 (diff) |
Fixed and updated GType macros dealing with non-existent interfaces.
Diffstat (limited to 'plugins/elf')
-rw-r--r-- | plugins/elf/format.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/plugins/elf/format.h b/plugins/elf/format.h index 1ba61c5..a822105 100644 --- a/plugins/elf/format.h +++ b/plugins/elf/format.h @@ -37,11 +37,12 @@ -#define G_TYPE_ELF_FORMAT g_elf_format_get_type() -#define G_ELF_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), g_elf_format_get_type(), GElfFormat)) -#define G_IS_ELF_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), g_elf_format_get_type())) -#define G_ELF_FORMAT_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE((inst), g_elf_format_get_type(), GElfFormatIface)) -#define G_ELF_FORMAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_ELF_FORMAT, GElfFormatClass)) +#define G_TYPE_ELF_FORMAT g_elf_format_get_type() +#define G_ELF_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), G_TYPE_ELF_FORMAT, GElfFormat)) +#define G_IS_ELF_FORMAT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), G_TYPE_ELF_FORMAT)) +#define G_ELF_FORMAT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), G_TYPE_ELF_FORMAT, GElfFormatClass)) +#define G_IS_ELF_FORMAT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), G_TYPE_ELF_FORMAT)) +#define G_ELF_FORMAT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_TYPE_ELF_FORMAT, GElfFormatClass)) /* Format d'exécutable ELF (instance) */ |