X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-toolbar.cpp;h=997de689b6cc1ac84e3584fb7c3bd320c2189ef4;hb=41a6ad96e81a8d8153c54877c4c12f61100677a9;hp=1f38bdbcdcba46fc6e8622cb8456645b4e08962e;hpb=19663b6c5766b06c73148fdf803ce3555052a23e;p=guile-irrlicht.git diff --git a/src/gui-toolbar.cpp b/src/gui-toolbar.cpp index 1f38bdb..997de68 100644 --- a/src/gui-toolbar.cpp +++ b/src/gui-toolbar.cpp @@ -25,19 +25,17 @@ #include "gui-toolbar.h" #include "wchar.h" - using namespace irr; - SCM -irr_gui_IGUIToolBar_addButton (SCM gui_toolbar, - SCM id, - SCM text, - SCM tooltiptext, - SCM img, - SCM pressedimg, - SCM is_push_button, - SCM use_alpha_channel) +IGUIToolBar_addButton (SCM gui_toolbar, + SCM id, + SCM text, + SCM tooltiptext, + SCM img, + SCM pressedimg, + SCM is_push_button, + SCM use_alpha_channel) { gui::IGUIToolBar* toolbar = (gui::IGUIToolBar*) scm_to_pointer (gui_toolbar); gui::IGUIButton* button = @@ -51,13 +49,8 @@ irr_gui_IGUIToolBar_addButton (SCM gui_toolbar, return scm_from_pointer ((void*) button, NULL); } - -extern "C" { - - void - init_gui_toolbar (void) - { - DEFINE_GSUBR ("irr_gui_IGUIToolBar_addButton", 8, 0, 0, irr_gui_IGUIToolBar_addButton); - } - +void +init_gui_toolbar (void) +{ + DEFINE_GSUBR ("IGUIToolBar_addButton", 8, 0, 0, IGUIToolBar_addButton); }