Module: GirFFI::FFIExt::Pointer

Defined in:
lib/gir_ffi/ffi_ext/pointer.rb

Overview

Extensions to FFI::Pointer

Instance Method Summary collapse

Instance Method Details

#to_objectObject

FIXME: Should probably not be here.



12
13
14
15
16
17
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 12

def to_object
  return nil if null?

  gtype = GObject.type_from_instance_pointer self
  Builder.build_by_gtype(gtype).direct_wrap self
end

#to_ptrObject



7
8
9
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 7

def to_ptr
  self
end

#to_utf8Object



19
20
21
# File 'lib/gir_ffi/ffi_ext/pointer.rb', line 19

def to_utf8
  null? ? nil : read_string.force_encoding("utf-8")
end