Ignore:
Timestamp:
08/06/2008 03:15:04 AM (18 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
cffi
revision id:
dsowen@fugue88.ws-20080806031504-lbax9ukub5ec1i2o
Message:

Initial hack for CFFI 0.10

File:
1 edited

Legend:

Unmodified
Added
Removed
  • combined/src/odbc/ffi-support.lisp

    r5 r7.1.1  
    55
    66(defun get-string (ptr length)
    7   (cffi:foreign-string-to-lisp ptr length nil)
    8   )
     7  (cffi:foreign-string-to-lisp ptr :count length))
    98
    109(defun get-string-nts (ptr)
    11   (cffi:foreign-string-to-lisp ptr MOST-POSITIVE-FIXNUM t))
     10  (cffi:foreign-string-to-lisp ptr :max-chars MOST-POSITIVE-FIXNUM))
    1211
    1312(defun put-string (ptr vector)
Note: See TracChangeset for help on using the changeset viewer.