Next: , Up: Enum types information


4.5.1 enum-item

— Structure: enum-item
     (defstruct enum-item
       name value nick)
name
A string - name of enum item
value
An integer - numeric value of enum item
nick
A string - short name of an enum item

Structure enum-item represents a single item of an enumeration type.

Example:

     #S(ENUM-ITEM :NAME "GTK_WINDOW_TOPLEVEL" :VALUE 0 :NICK "toplevel")