Macro: DEFMETHOD+

Source

(defmacro defmethod+ ((name fun-name) ret-type &body args)
  `(defcfun* (,name ,fun-name :error-fun bdb-check-error :method t)
    ,(if (eq ret-type :int) :error-int ret-type)
    ,@args))
Source Context