X-Git-Url: https://git.jsancho.org/?p=guile-irrlicht.git;a=blobdiff_plain;f=src%2Freference-counted.h;fp=src%2Freference-counted.h;h=f2a261315983051dc1f1cf3409d3017a05126daf;hp=0000000000000000000000000000000000000000;hb=2806f03eafc48ec9ef02a3dc2d74133eaf11ccc1;hpb=a8ec20de5146479a15d388393b37bbf3e346f619 diff --git a/src/reference-counted.h b/src/reference-counted.h new file mode 100644 index 0000000..f2a2613 --- /dev/null +++ b/src/reference-counted.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_REFERENCE_COUNTED_H_INCLUDED__ +#define __GUILE_IRRLICHT_REFERENCE_COUNTED_H_INCLUDED__ + +#include +#include + +extern "C" { + + void + init_reference_counted (void); + + SCM + irr_drop (SCM wrapped_obj); + +} + +#endif