Sha256: a0277b53fead20a6ec342a4646d79325a4189a00ce50cc59ed84103e607a0e5c
Contents?: true
Size: 653 Bytes
Versions: 14
Compression:
Stored size: 653 Bytes
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /************************************************ rbatkimplementor.c - $Author: mutoh $ $Date: 2003/12/07 17:18:16 $ Copyright (C) 2003 Masao Mutoh ************************************************/ #include "rbatk.h" #define _SELF(s) (ATK_IMPLEMENTOR(RVAL2GOBJ(s))) static VALUE rbatkimpl_ref_accessible(self) VALUE self; { return GOBJ2RVAL(atk_implementor_ref_accessible(_SELF(self))); } void Init_atk_implementor() { VALUE impl = G_DEF_INTERFACE(ATK_TYPE_IMPLEMENTOR, "Implementor", mAtk); rb_define_method(impl, "ref_accessible", rbatkimpl_ref_accessible, 0); }
Version data entries
14 entries across 14 versions & 1 rubygems