Sha256: 15a92c49505890345dfbc6c5cd7b28c18415633ac261b5afc0cfce88a65e4e6d

Contents?: true

Size: 1022 Bytes

Versions: 2

Compression:

Stored size: 1022 Bytes

Contents

require 'ffi-gobject_introspection/i_base_info'
require 'ffi-gobject_introspection/i_type_info'
require 'ffi-gobject_introspection/i_arg_info'

module GObjectIntrospection
  # Wraps a GICallableInfo struct; represents a callable, either
  # IFunctionInfo, ICallbackInfo or IVFuncInfo.
  class ICallableInfo < IBaseInfo
    def return_type
      ITypeInfo.wrap(Lib.g_callable_info_get_return_type @gobj)
    end

    def caller_owns
      Lib.g_callable_info_get_caller_owns @gobj
    end

    def may_return_null?
      Lib.g_callable_info_may_return_null @gobj
    end

    def n_args
      Lib.g_callable_info_get_n_args @gobj
    end

    def arg index
      IArgInfo.wrap(Lib.g_callable_info_get_arg @gobj, index)
    end
    ##
    build_array_method :args

    def skip_return?
      Lib.g_callable_info_skip_return @gobj
    end

    def instance_ownership_transfer
      if VERSION >= '1.42'
        Lib.g_callable_info_get_instance_ownership_transfer @gobj
      else
        :nothing
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gir_ffi-0.7.10 lib/ffi-gobject_introspection/i_callable_info.rb
gir_ffi-0.7.9 lib/ffi-gobject_introspection/i_callable_info.rb