girffi.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
  2. * GObject introspection: Helper functions for ffi integration
  3. *
  4. * Copyright (C) 2008 Red Hat, Inc
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 02111-1307, USA.
  20. */
  21. #ifndef __GIRFFI_H__
  22. #define __GIRFFI_H__
  23. #include <ffi.h>
  24. #include "girepository.h"
  25. G_BEGIN_DECLS
  26. /**
  27. * GIFFIClosureCallback:
  28. * @Param1: TODO
  29. * @Param2: TODO
  30. * @Param3: TODO
  31. * @Param4: TODO
  32. *
  33. * TODO
  34. */
  35. typedef void (*GIFFIClosureCallback) (ffi_cif *,
  36. void *,
  37. void **,
  38. void *);
  39. /**
  40. * GIFunctionInvoker:
  41. * @cif: the cif
  42. * @native_address: the native address
  43. *
  44. * TODO
  45. */
  46. typedef struct _GIFunctionInvoker GIFunctionInvoker;
  47. struct _GIFunctionInvoker {
  48. ffi_cif cif;
  49. gpointer native_address;
  50. /* <private> */
  51. gpointer padding[3];
  52. };
  53. /**
  54. * GIFFIReturnValue:
  55. *
  56. * TODO
  57. */
  58. typedef GIArgument GIFFIReturnValue;
  59. GI_AVAILABLE_IN_ALL
  60. ffi_type * gi_type_tag_get_ffi_type (GITypeTag type_tag, gboolean is_pointer);
  61. GI_AVAILABLE_IN_ALL
  62. ffi_type * g_type_info_get_ffi_type (GITypeInfo *info);
  63. GI_AVAILABLE_IN_1_32
  64. void gi_type_info_extract_ffi_return_value (GITypeInfo *return_info,
  65. GIFFIReturnValue *ffi_value,
  66. GIArgument *arg);
  67. GI_AVAILABLE_IN_ALL
  68. gboolean g_function_info_prep_invoker (GIFunctionInfo *info,
  69. GIFunctionInvoker *invoker,
  70. GError **error);
  71. GI_AVAILABLE_IN_1_32
  72. gboolean g_function_invoker_new_for_address (gpointer addr,
  73. GICallableInfo *info,
  74. GIFunctionInvoker *invoker,
  75. GError **error);
  76. GI_AVAILABLE_IN_ALL
  77. void g_function_invoker_destroy (GIFunctionInvoker *invoker);
  78. GI_AVAILABLE_IN_ALL
  79. ffi_closure * g_callable_info_prepare_closure (GICallableInfo *callable_info,
  80. ffi_cif *cif,
  81. GIFFIClosureCallback callback,
  82. gpointer user_data);
  83. GI_AVAILABLE_IN_ALL
  84. void g_callable_info_free_closure (GICallableInfo *callable_info,
  85. ffi_closure *closure);
  86. G_END_DECLS
  87. #endif /* __GIRFFI_H__ */