]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/IGUIEnvironment.h
drop refactor
[guile-irrlicht.git] / src / IGUIEnvironment.h
index 65fc694bc8ba63af8c8e39f4043c1d816e913416..e4d67311920c4f19c822bf50ca8f90b4a9b947b9 100644 (file)
 
 #include <irrlicht/irrlicht.h>
 #include <libguile.h>
+#include "wrapped.h"
 
 extern "C" {
 
   void
   init_gui_environment (void);
 
-  void
-  init_gui_environment_type (void);
+  DECLARE_WRAPPED_TYPE (irr::gui::IGUIEnvironment*, init_gui_environment_type,
+                        gui_environment_p, wrap_gui_environment, unwrap_gui_environment);
 
   SCM
-  wrap_gui_environment (irr::gui::IGUIEnvironment* gui_environment);
-
-  irr::gui::IGUIEnvironment*
-  unwrap_gui_environment (SCM gui_environment_obj);
+  irr_gui_addStaticText (SCM guienv,
+                         SCM text,
+                         SCM rectangle,
+                         SCM border,
+                         SCM wordWrap,
+                         SCM parent,
+                         SCM id,
+                         SCM fillBackground);
 
 }