Sha256: 0aecd265d887e4eb50bcbb206aafd43e883b8cc7741134e4d60765e3ba8510fb
Contents?: true
Size: 487 Bytes
Versions: 9
Compression:
Stored size: 487 Bytes
Contents
# frozen_string_literal: true module GirFFI module InfoExt # Extensions for GObjectIntrospection::IFunctionInfo needed by GirFFI module IFunctionInfo def argument_ffi_types super.tap do |types| types.unshift :pointer if method? types << :pointer if throws? end end def return_ffi_type return_type.to_ffi_type end end end end GObjectIntrospection::IFunctionInfo.include GirFFI::InfoExt::IFunctionInfo
Version data entries
9 entries across 9 versions & 1 rubygems