gobject-introspection 3.4.0 → 3.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/ext/gobject-introspection/extconf.rb +1 -4
  3. data/ext/gobject-introspection/rb-gi-argument.c +10 -3
  4. data/ext/gobject-introspection/rb-gi-arguments-in.c +82 -122
  5. data/ext/gobject-introspection/rb-gi-arguments-out.c +31 -11
  6. data/ext/gobject-introspection/rb-gi-arguments.c +217 -18
  7. data/ext/gobject-introspection/rb-gi-base-info.c +11 -1
  8. data/ext/gobject-introspection/rb-gi-callable-info.c +10 -2
  9. data/ext/gobject-introspection/rb-gi-callback.c +156 -2
  10. data/ext/gobject-introspection/rb-gi-conversions.h +6 -6
  11. data/ext/gobject-introspection/rb-gi-interface-info.c +1 -7
  12. data/ext/gobject-introspection/rb-gi-loader.c +58 -10
  13. data/ext/gobject-introspection/rb-gi-object-info.c +11 -1
  14. data/ext/gobject-introspection/rb-gi-private-arguments-in.h +3 -1
  15. data/ext/gobject-introspection/rb-gi-private-arguments.h +6 -2
  16. data/ext/gobject-introspection/rb-gi-private-callback.h +6 -3
  17. data/ext/gobject-introspection/rb-gi-private.h +1 -0
  18. data/ext/gobject-introspection/rb-gi-repository.c +1 -1
  19. data/ext/gobject-introspection/rb-gi-struct-info.c +15 -3
  20. data/ext/gobject-introspection/rb-gi-vfunc-info.c +2 -2
  21. data/ext/gobject-introspection/rb-gobject-introspection.c +231 -0
  22. data/lib/gobject-introspection/loader.rb +66 -2
  23. data/lib/gobject-introspection/type-tag.rb +2 -0
  24. data/test/gobject-introspection-test-utils.rb +2 -2
  25. data/test/run-test.rb +18 -25
  26. data/test/test-base-info.rb +5 -1
  27. data/test/test-callable-info.rb +16 -2
  28. data/test/test-loader.rb +53 -7
  29. data/test/test-object-info.rb +5 -1
  30. data/test/test-struct-info.rb +6 -1
  31. metadata +5 -8
  32. data/ext/gobject-introspection/gobject-introspection-enum-types.c +0 -230
  33. data/ext/gobject-introspection/gobject-introspection-enum-types.h +0 -42
  34. data/ext/gobject-introspection/rbgiversion.h +0 -24
@@ -1,42 +0,0 @@
1
-
2
- /* Generated by glib-mkenums.rb ($Id$) */
3
-
4
- #ifndef __GOBJECT_INTROSPECTION_ENUM_TYPES_H__
5
- #define __GOBJECT_INTROSPECTION_ENUM_TYPES_H__
6
-
7
- #include <glib-object.h>
8
-
9
- G_BEGIN_DECLS
10
-
11
- /* enumerations from "/usr/include/gobject-introspection-1.0/girepository.h" */
12
- GType g_i_repository_load_flags_get_type (void);
13
- #define G_TYPE_I_REPOSITORY_LOAD_FLAGS (g_i_repository_load_flags_get_type())
14
- GType g_i_repository_error_get_type (void);
15
- #define G_TYPE_I_REPOSITORY_ERROR (g_i_repository_error_get_type())
16
-
17
- /* enumerations from "/usr/include/gobject-introspection-1.0/gitypes.h" */
18
- GType g_i_info_type_get_type (void);
19
- #define G_TYPE_I_INFO_TYPE (g_i_info_type_get_type())
20
- GType g_i_transfer_get_type (void);
21
- #define G_TYPE_I_TRANSFER (g_i_transfer_get_type())
22
- GType g_i_direction_get_type (void);
23
- #define G_TYPE_I_DIRECTION (g_i_direction_get_type())
24
- GType g_i_scope_type_get_type (void);
25
- #define G_TYPE_I_SCOPE_TYPE (g_i_scope_type_get_type())
26
- GType g_i_type_tag_get_type (void);
27
- #define G_TYPE_I_TYPE_TAG (g_i_type_tag_get_type())
28
- GType g_i_array_type_get_type (void);
29
- #define G_TYPE_I_ARRAY_TYPE (g_i_array_type_get_type())
30
- GType g_i_field_info_flags_get_type (void);
31
- #define G_TYPE_I_FIELD_INFO_FLAGS (g_i_field_info_flags_get_type())
32
- GType g_iv_func_info_flags_get_type (void);
33
- #define G_TYPE_IV_FUNC_INFO_FLAGS (g_iv_func_info_flags_get_type())
34
- GType g_i_function_info_flags_get_type (void);
35
- #define G_TYPE_I_FUNCTION_INFO_FLAGS (g_i_function_info_flags_get_type())
36
-
37
- G_END_DECLS
38
-
39
- #endif /* __GOBJECT_INTROSPECTION_ENUM_TYPES_H__ */
40
-
41
- /* Generated data ends here */
42
-
@@ -1,24 +0,0 @@
1
- /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgiversion.h -
5
-
6
- This file was generated by mkmf-gnome2.rb.
7
-
8
- ************************************************/
9
-
10
- #ifndef __RBGI_VERSION_H__
11
- #define __RBGI_VERSION_H__
12
-
13
- #define GI_MAJOR_VERSION (1)
14
- #define GI_MINOR_VERSION (46)
15
- #define GI_MICRO_VERSION (0)
16
-
17
- #define GI_CHECK_VERSION(major,minor,micro) \
18
- (GI_MAJOR_VERSION > (major) || \
19
- (GI_MAJOR_VERSION == (major) && GI_MINOR_VERSION > (minor)) || \
20
- (GI_MAJOR_VERSION == (major) && GI_MINOR_VERSION == (minor) && \
21
- GI_MICRO_VERSION >= (micro)))
22
-
23
-
24
- #endif /* __RBGI_VERSION_H__ */