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