Adding support for lua scripting
[geeqie.git] / src / lua.h
1 /** \file
2  * \short LUA implementation
3  * \author Klaus Ethgen <Klaus@Ethgen.de>
4  */
5
6 /*
7  *  This file is a part of Geeqie project (http://geeqie.sourceforge.net/).
8  *  Copyright (C) 2008 - 2010 The Geeqie Team
9  *
10  *  This program is free software; you can redistribute it and/or modify it
11  *  under the terms of the GNU General Public License as published by the Free
12  *  Software Foundation; either version 2 of the License, or (at your option)
13  *  any later version.
14  *
15  *  This program is distributed in the hope that it will be useful, but WITHOUT
16  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
18  *  more details.
19  */
20
21 #ifndef __LUA_H
22 #define __LUA_H
23
24 #ifdef HAVE_LUA
25
26 void lua_init(void);
27
28 #endif
29 #endif
30 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */