Basic constructor macro for decl-spec-stdcall structures.
(make-decl-spec-stdcall )
This is the usual way to construct decl-spec-stdcall structures. It simply conses together a structure with the specified fields.
This macro generates a new decl-spec-stdcall structure from scratch. See also change-decl-spec-stdcall, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-decl-spec-stdcall (&rest args) (std::make-aggregate 'decl-spec-stdcall args 'nil 'make-decl-spec-stdcall nil))
Function:
(defun decl-spec-stdcall nil (declare (xargs :guard t)) (cons :stdcall nil))