An IDLconst is mapped to a Lisp constant whose name is the scoped symbol corresponding to that const and whose value is the mapped version of the corresponding value.
For example, in IDL:
module example {
const long constant = 321;
};
And in generated Lisp:
(defpackage :example) (defconstant example:constant 321)