Sha256: 4cee64409197eba0df5b60db586f4a260eb534eca23484aa94556310e08bfbb1
Contents?: true
Size: 426 Bytes
Versions: 23
Compression:
Stored size: 426 Bytes
Contents
module GObjectIntrospection # Wraps a GIVFuncInfo struct. # Represents a virtual function. class IVFuncInfo < IBaseInfo def flags Lib.g_vfunc_info_get_flags @gobj 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
23 entries across 23 versions & 1 rubygems