X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fpackage.lisp;h=15b47928a0b25882f1051e9c0e484e0572156530;hb=01066b26a984761a2c9372871bba3697984a4456;hp=abaad4655e0851e2f16132a77ed538684324fbad;hpb=1eef42e18bc87785aec91ce4710085d30898b160;p=uffi.git diff --git a/src/package.lisp b/src/package.lisp index abaad46..15b4792 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -15,14 +15,15 @@ (defpackage #:uffi (:use #:cl) - (:export - + (:export + ;; immediate types + #:no-long-long #:def-constant #:def-foreign-type #:def-type #:null-char-p - + ;; aggregate types #:def-enum #:def-struct @@ -31,7 +32,7 @@ #:def-array-pointer #:deref-array #:def-union - + ;; objects #:allocate-foreign-object #:free-foreign-object @@ -52,7 +53,8 @@ #:with-cast-pointer #:def-foreign-var #:convert-from-foreign-usb8 - + #:def-pointer-var + ;; string functions #:convert-from-cstring #:convert-to-cstring @@ -63,8 +65,9 @@ #:convert-to-foreign-string #:allocate-foreign-string #:with-foreign-string + #:with-foreign-strings #:foreign-string-length - + ;; function call #:def-function @@ -77,6 +80,12 @@ ;; OS #:run-shell-command #:getenv + + ;; Internatialization + #:no-i18n + #:*default-foreign-encoding* + #:*foreign-encodings* + #:foreign-encoded-string-octets ))