From: espen Date: Wed, 27 Oct 2004 14:53:38 +0000 (+0000) Subject: Renamed to export.lisp X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/4fbd0a5b6907da0ebf9b2c994a1a60415ebd424e Renamed to export.lisp --- diff --git a/glib/glib-export.lisp b/glib/glib-export.lisp deleted file mode 100644 index a884660..0000000 --- a/glib/glib-export.lisp +++ /dev/null @@ -1,49 +0,0 @@ -;; Common Lisp bindings for GTK+ v2.0 -;; Copyright (C) 2000 Espen S. Johnsen -;; -;; This library is free software; you can redistribute it and/or -;; modify it under the terms of the GNU Lesser General Public -;; License as published by the Free Software Foundation; either -;; version 2 of the License, or (at your option) any later version. -;; -;; This library is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; Lesser General Public License for more details. -;; -;; You should have received a copy of the GNU Lesser General Public -;; License along with this library; if not, write to the Free Software -;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -;; $Id: glib-export.lisp,v 1.6 2002-01-20 14:09:52 espen Exp $ - - -;;; Autogenerating exported symbols - -(in-package "GLIB") - -(eval-when (:compile-toplevel :load-toplevel :execute) - (defexport defbinding (name &rest args) - (declare (ignore args)) - (if (symbolp name) - name - (first name))) - - (defexport define-type-method-fun (name lambda-list) - (declare (ignore lambda-list)) - name) - - (defexport define-types-by-introspection (prefix &rest args) - (list-autoexported-symbols (expand-type-definitions prefix args)))) - - -(export-from-file #p"clg:glib;gutils.lisp") -(export-from-file #p"clg:glib;glib.lisp") -(export-from-file #p"clg:glib;proxy.lisp") -(export-from-file #p"clg:glib;gboxed.lisp") -(export-from-file #p"clg:glib;gtype.lisp") -(export-from-file #p"clg:glib;gparam.lisp") -(export-from-file #p"clg:glib;gcallback.lisp") -(export-from-file #p"clg:glib;ginterface.lisp") -(export-from-file #p"clg:glib;gobject.lisp") -(export-from-file #p"clg:glib;genums.lisp")