static VALUE t_close_connection (VALUE self, VALUE signature, VALUE after_writing)
{
    evma_close_connection (NUM2ULONG (signature), ((after_writing == Qtrue) ? 1 : 0));
    return Qnil;
}
Example #2
0
void EM::Connection::Close (bool afterWriting)
{
	evma_close_connection (Signature.c_str(), afterWriting);
}