Constructor macro for vl-wireinfo-p structures.
Syntax:
(make-vl-wireinfo [:usedp <usedp>] [:setp <setp>])
This is our preferred way to construct vl-wireinfo-p structures. It simply conses together a structure with the specified fields.
This macro generates a new vl-wireinfo-p structure from scratch. See also change-vl-wireinfo, which can "change" an existing structure, instead.
The vl-wireinfo-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-wireinfo instead.
This is an ordinary
Macro:
(defmacro make-vl-wireinfo (&rest args) (std::make-aggregate 'vl-wireinfo args '((:usedp) (:setp)) 'make-vl-wireinfo nil))