X-Git-Url: https://git.jsancho.org/?p=guile-irrlicht.git;a=blobdiff_plain;f=src%2Fgui-scrollbar.h;fp=src%2Fgui-scrollbar.h;h=84be8b183e0d5cbfd4fdc1525f2944a589927b24;hp=0000000000000000000000000000000000000000;hb=272a4db4154e3970be1f0c619fa592d7b6b89f74;hpb=15be0323f62a228707f616c25c4b87cd1d68766f diff --git a/src/gui-scrollbar.h b/src/gui-scrollbar.h new file mode 100644 index 0000000..84be8b1 --- /dev/null +++ b/src/gui-scrollbar.h @@ -0,0 +1,38 @@ +/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine + + Copyright (C) 2020 Javier Sancho + + 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 + . +*/ + +#ifndef __GUILE_IRRLICHT_GUI_SCROLLBAR_H_INCLUDED__ +#define __GUILE_IRRLICHT_GUI_SCROLLBAR_H_INCLUDED__ + +#include +#include +#include "wrapped.h" + +extern "C" { + + void + init_gui_scrollbar (void); + + DECLARE_WRAPPED_TYPE (irr::gui::IGUIScrollBar*, init_gui_scrollbar_type, + gui_scrollbar_p, wrap_gui_scrollbar, unwrap_gui_scrollbar); +} + +#endif