X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fpackage.lisp;h=4d3832a65b9e35917dc36945637386885d824fde;hb=2bb9a36070147d6c21e4a99d699ec3563c021a70;hp=963a16ecf069069d07c85cc5d59a2cdf5d9e172d;hpb=70961aaf321b11e18884c7815d679e2b560996af;p=uffi.git diff --git a/src/package.lisp b/src/package.lisp index 963a16e..4d3832a 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 @@ -65,7 +67,7 @@ #:with-foreign-string #:with-foreign-strings #:foreign-string-length - + ;; function call #:def-function @@ -78,6 +80,11 @@ ;; OS #:run-shell-command #:getenv + + ;; Internatialization + #:no-i18n + #:*default-foreign-encoding* + #:*foreign-encodings* ))