question about def-enum
Lam <[email protected]> Mon, 25 Aug 2003 19:45:01 +0200
| Newsgroups | gmane.lisp.uffi.general |
|---|---|
| Organization | Tux |
| Message-ID | <[email protected]> |
hi
i try to use uffi
if i have this on the .h :
typedef enum {
CONSTANT_A = CONSTANT_B + 14,
..
} foo
can i do this :
(uffi:def-enum foo
((...)
(constant-a :(+ constant-b 14))))
--
Lam