X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fdevice.h;h=6c6a1d9c9500499d668649b8ef3591ed2827dc55;hb=6343b5b67dfe68e1e7270ba6c100603f157d1b31;hp=d95e458fecf120b1ae9b2aa16eddab30fdbda2ea;hpb=37aba303eccc24a407f1b5b0af81623e47b89a22;p=guile-irrlicht.git diff --git a/src/device.h b/src/device.h index d95e458..6c6a1d9 100644 --- a/src/device.h +++ b/src/device.h @@ -22,60 +22,9 @@ #ifndef __GUILE_IRRLICHT_DEVICE_H_INCLUDED__ #define __GUILE_IRRLICHT_DEVICE_H_INCLUDED__ -#include -#include -#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_IrrlichtDevice_getGUIEnvironment (SCM device); - - SCM - irr_IrrlichtDevice_getSceneManager (SCM device); - - SCM - irr_IrrlichtDevice_getVideoDriver (SCM device); - - SCM - irr_IrrlichtDevice_setWindowCaption (SCM device, - SCM text); - - 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_yield (SCM wrapped_device); - } #endif