Used to include IDL files in a Lisp system definition.
com
The defsystem member type :midl-file
can be used to include IDL files in a Lisp system definition.
When a file is given the type :midl-file
, compiling the system will compile the IDL file to produce a fasl. Loading the system will load this fasl. The :package
, :mapping-options
and :import-search-path
keywords can specified as for midl.
;; Include the file myfile.idl in a system (defsystem my-system () :members (("myfile.idl" :type :midl-file)))
COM/Automation User Guide and Reference Manual - 01 Dec 2021 19:38:38