コード例 #1
0
static VALUE t_unwatch_filename (VALUE self UNUSED, VALUE sig)
{
	try {
		evma_unwatch_filename(NUM2BSIG (sig));
	} catch (std::runtime_error e) {
		rb_raise (EM_eInvalidSignature, "%s", e.what());
	}
	
	return Qnil;
}
コード例 #2
0
static VALUE t_unwatch_filename (VALUE self, VALUE sig)
{
    evma_unwatch_filename(NUM2ULONG (sig));
    return Qnil;
}
コード例 #3
0
static VALUE t_unwatch_filename (VALUE self UNUSED, VALUE sig)
{
	evma_unwatch_filename(NUM2BSIG (sig));
	return Qnil;
}