]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/device.h
useless code
[guile-irrlicht.git] / src / device.h
index 158e51da1e325d8d72ab867d647ab24535b02670..6c6a1d9c9500499d668649b8ef3591ed2827dc55 100644 (file)
 #ifndef __GUILE_IRRLICHT_DEVICE_H_INCLUDED__
 #define __GUILE_IRRLICHT_DEVICE_H_INCLUDED__
 
-#include <irrlicht/irrlicht.h>
-#include <libguile.h>
-#include "wrapped.h"
-
 extern "C" {
-
   void
   init_device (void);
-
-  DECLARE_WRAPPED_TYPE (irr::IrrlichtDevice*, init_device_type,
-                        device_p, wrap_device, unwrap_device);
-
-  SCM
-  irr_createDevice (SCM device_type,
-                    SCM window_size,
-                    SCM bits,
-                    SCM fullscreen,
-                    SCM stencilbuffer,
-                    SCM vsync,
-                    SCM receiver);
-
-  SCM
-  irr_getTimer (SCM wrapped_device);
-
-  SCM
-  irr_isWindowActive (SCM wrapped_device);
-
-  SCM
-  irr_run (SCM wrapped_device);
-
-  SCM
-  irr_setEventReceiver (SCM wrapped_device,
-                        SCM receiver);
-
-  SCM
-  irr_setResizable (SCM wrapped_device,
-                    SCM resize);
-
-  SCM
-  irr_setWindowCaption (SCM wrapped_device,
-                        SCM text);
-
-  SCM
-  irr_yield (SCM wrapped_device);
-
 }
 
 #endif