static PyObject *pyDeleteRuleset(PyObject *self, PyObject *args) { void *handle; if (!PyArg_ParseTuple(args, "l", &handle)) { PyErr_SetString(RulesError, "pyDeleteRuleset Invalid argument"); return NULL; } unsigned int result = deleteRuleset(handle); if (result != RULES_OK) { if (result == ERR_OUT_OF_MEMORY) { PyErr_NoMemory(); } else { char *message; if (asprintf(&message, "Could not delete ruleset, error code: %d", result)) { PyErr_NoMemory(); } else { PyErr_SetString(RulesError, message); free(message); } } return NULL; } Py_RETURN_NONE; }
static VALUE rbDeleteRuleset(VALUE self, VALUE handle) { Check_Type(handle, T_FIXNUM); unsigned int result = deleteRuleset((void *)FIX2LONG(handle)); if (result != RULES_OK) { if (result == ERR_OUT_OF_MEMORY) { rb_raise(rb_eNoMemError, "Out of memory"); } else { rb_raise(rb_eException, "Could not delete ruleset, error code: %d", result); } } return Qnil; }