Method: WIN32OLE#ole_free
- Defined in:
- win32ole.c
#ole_free ⇒ Object
invokes Release method of Dispatch interface of WIN32OLE object. Usually, you do not need to call this method because Release method called automatically when WIN32OLE object garbaged.
3236 3237 3238 3239 3240 3241 3242 3243 3244 |
# File 'win32ole.c', line 3236
static VALUE
fole_free(VALUE self)
{
struct oledata *pole = NULL;
pole = oledata_get_struct(self);
OLE_FREE(pole->pDispatch);
pole->pDispatch = NULL;
return Qnil;
}
|