Sha256: 9abc30673501e16ce1c7ac0e29d4da73f2df2a618f2184db320a967771153871
Contents?: true
Size: 479 Bytes
Versions: 15
Compression:
Stored size: 479 Bytes
Contents
module GObjectIntrospection # Wraps a GIVFuncInfo struct. # Represents a virtual function. class IVFuncInfo < ICallableInfo def flags Lib.g_vfunc_info_get_flags @gobj end def throws? flags & 8 != 0 end def offset Lib.g_vfunc_info_get_offset @gobj end def signal ISignalInfo.wrap(Lib.g_vfunc_info_get_signal @gobj) end def invoker IFunctionInfo.wrap(Lib.g_vfunc_info_get_invoker @gobj) end end end
Version data entries
15 entries across 15 versions & 1 rubygems