;;; ;;; sdl.scm - Gauche SDL binding ;;; ;;; Copyright(C) 2003 by Michael Vess (mvess@michaelvess.com) ;;; ;;; Permission to use, copy, modify, distribute this software and ;;; accompanying documentation for any purpose is hereby granted, ;;; provided that existing copyright notices are retained in all ;;; copies and that this notice is included verbatim in all ;;; distributions. ;;; This software is provided as is, without express or implied ;;; warranty. In no circumstances the author(s) shall be liable ;;; for any damages arising out of the use of this software. ;;; ;;; $Id: sdl.scm,v 1.2 2003/01/19 10:18:12 mikiso Exp $ ;;; (define-module sdl (use gauche.uvector) (export-all) ) (select-module sdl) (dynamic-load "gauche-sdl" :export-symbols #t) (provide "sdl")