be5abf5379c82feb192ddc69f515afdefdb405be
[clsql.git] / uffi / clsql-uffi-package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi-package.cl
6 ;;;; Purpose:       Package definitions for common UFFI interface routines
7 ;;;; Programmers:   Kevin M. Rosenberg
8 ;;;; Date Started:  Mar 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:cl-user)
20
21 (defpackage #:clsql-uffi
22   (:use #:cl #:uffi)
23   (:export
24    #:find-and-load-foreign-library
25    #:canonicalize-type-list
26    #:convert-raw-field
27    #:atoi
28    #:atol
29    #:atof
30    #:atol64
31    #:make-64-bit-integer
32    #:make-128-bit-integer
33    #:split-64-bit-integer)
34   (:documentation "Common functions for interfaces using UFFI"))
35