ole_reference_count(p1)
public
Returns reference counter of Dispatch interface of WIN32OLE object. You should not use this method
because this method exists only for debugging WIN32OLE.
Show source
static VALUE
fole_s_reference_count(VALUE self, VALUE obj)
{
struct oledata * pole = NULL;
pole = oledata_get_struct(obj);
return INT2NUM(reference_count(pole));
}