Modifying constructor for vl-dpiimport structures.
(change-vl-dpiimport x
[:name <name>]
[:c-name <c-name>]
[:spec <spec>]
[:prop <prop>]
[:rettype <rettype>]
[:portdecls <portdecls>]
[:atts <atts>]
[:loc <loc>])
This is an often useful alternative to make-vl-dpiimport.
We construct a new vl-dpiimport structure that is a copy of
This is an ordinary
Macro:
(defmacro change-vl-dpiimport (x &rest args) (std::change-aggregate 'vl-dpiimport x args '((:name . vl-dpiimport->name) (:c-name . vl-dpiimport->c-name) (:spec . vl-dpiimport->spec) (:prop . vl-dpiimport->prop) (:rettype . vl-dpiimport->rettype) (:portdecls . vl-dpiimport->portdecls) (:atts . vl-dpiimport->atts) (:loc . vl-dpiimport->loc)) 'change-vl-dpiimport 'remake-vl-dpiimport))