Changeset 5758


Ignore:
Timestamp:
Jan 20, 2007, 10:52:47 PM (18 years ago)
Author:
Gary Byers
Message:

Default (no-op) functions for coercing foreign args, results.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/foreign-types.lisp

    r5743 r5758  
    15141514    :void))
    15151515
     1516(defun null-coerce-foreign-arg (arg-type-keyword argform)
     1517  (declare (ignore arg-type-keyword))
     1518  argform)
     1519
     1520(defun null-coerce-foreign-result (result-type-keyword resultform)
     1521  (declare (ignore result-type-keyword))
     1522  resultform)
     1523
    15161524(defun foreign-type-to-representation-type (f)
    15171525  (if (or (member f *foreign-representation-type-keywords*)
Note: See TracChangeset for help on using the changeset viewer.