Changeset 11524
- Timestamp:
- Dec 15, 2008, 11:40:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/library/parse-ffi.lisp
r11493 r11524 619 619 620 620 (defun record-global-union (u) 621 (when *ffi-global-unions*621 (when (and *ffi-global-unions* (ffi-union-fields u)) 622 622 (setf (gethash (ffi-union-reference u) *ffi-global-unions*) u))) 623 623 624 624 (defun record-global-transparent-union (u) 625 (when *ffi-global-transparent-unions*625 (when (and *ffi-global-transparent-unions* (ffi-transparent-union-fields u)) 626 626 (setf (gethash (ffi-transparent-union-reference u) *ffi-global-transparent-unions*) u))) 627 627 … … 655 655 656 656 (defun record-global-struct (s) 657 (when *ffi-global-structs*657 (when (and *ffi-global-structs* (ffi-struct-fields s)) 658 658 (setf (gethash (ffi-struct-reference s) *ffi-global-structs*) s))) 659 659
Note: See TracChangeset
for help on using the changeset viewer.