3.10 Enumerations and Masks
Although the constructors below are described as procedures, they are implemented as syntax, so that error messages can report a type name where the syntactic context implies one.
To call a foreign function that takes an enum as a parameter simply provide the symbol of the desired enum as an argument.
; example sdl call (sdl-create-window "title" ... 'SDL_WINDOW_OPENGL)
The list symbols can also set the values of symbols by putting '= and an exact integer after the symbol. For example, the list '(x y = 10 z) maps 'x to 0, 'y to 10, and 'z to 11.
The basetype argument specifies the base type to use.
The unknown argument specifies the result of converting an unknown integer from the foreign side: it can be a one-argument function to be applied on the integer, or a value to return instead. The default is to throw an exception.
Note that the default basetype is _ufixint. This differs from C enumerations that can use any value in _fixint. Any _enum using negative values should use _fixint for the base type.
In other words, to call a foreign function that uses bitmask parameters simply call the procedure with the list of wanted flags.
; example call from curl_global_init in curl.h (curl-global-init '(CURL_GLOBAL_SSL CURL_GLOBAL_WIN32))
When a symbol does not have a given value (via '= after the symbol in symbols), its value is the next power of 2 greater than the previous symbol’s assignment (or 1 for the first symbol).
The default basetype is _uint, since high bits are often used for flags.
; example from curl.h
> (define _curl_global_flag (_bitmask `(CURL_GLOBAL_SSL = 1 CURL_GLOBAL_WIN32 = 2 CURL_GLOBAL_ALL = 3 CURL_GLOBAL_NOTHING = 0 CURL_GLOBAL_DEFAULT = 3 CURL_GLOBAL_ACK_EINTR = 4))) ; example from XOrg
> (define _Modifiers (_bitmask '(ShiftMask = 1 LockMask = 2 ControlMask = 4 Mod1Mask = 8 Mod2Mask = 16 Mod3Mask = 32 Mod4Mask = 64 Mod5Mask = 128 Button1Mask = 256 Button2Mask = 512 Button3Mask = 1024 Button4Mask = 2048 Button5Mask = 4096 Any = 32768)))