]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - irrlicht/bindings.scm
create-device
[guile-irrlicht.git] / irrlicht / bindings.scm
diff --git a/irrlicht/bindings.scm b/irrlicht/bindings.scm
deleted file mode 100644 (file)
index 2592e59..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-;;; guile-irrlicht --- FFI bindings for Irrlicht Engine
-;;; Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
-;;;
-;;; This file is part of guile-irrlicht.
-;;;
-;;; Guile-irrlicht 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 3 of the
-;;; License, or (at your option) any later version.
-;;;
-;;; Guile-irrlicht 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
-;;; General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU Lesser General Public
-;;; License along with guile-irrlicht.  If not, see
-;;; <http://www.gnu.org/licenses/>.
-
-
-(define-module (irrlicht bindings)
-  #:use-module (system foreign)
-  #:use-module (irrlicht util foreign))
-
-(define-foreign create-device
-  '* "irr_createDevice" (list int '* uint32 int int int))
-
-(define-foreign get-cursor-control
-  '* "irr_getCursorControl" (list '*))
-
-(define-foreign get-file-system
-  '* "irr_getFileSystem" (list '*))
-
-(define-foreign get-video-driver
-  '* "irr_getVideoDriver" (list '*))
-
-(define-foreign get-gui-environment
-  '* "irr_getGUIEnvironment" (list '*))
-
-(define-foreign get-scene-manager
-  '* "irr_getSceneManager" (list '*))
-
-(define-foreign is-window-active
-  int "irr_isWindowActive" (list '*))
-
-(define-foreign set-window-caption
-  void "irr_setWindowCaption" (list '* '*))
-
-(define-foreign run
-  int "irr_run" (list '*))
-
-(define-foreign drop
-  int "irr_drop" (list '*))