410cfb681f33f41633e05ed44fb724397a8e41c5
[geeqie.git] / src / glua.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 __GLUA_H
22 #define __GLUA_H
23
24 #ifdef HAVE_LUA
25
26 #include <glib.h>
27 #include "main.h"
28
29 void lua_init(void);
30
31 gchar *lua_callvalue(FileData *fd, const gchar *file, const gchar *function);
32
33 #endif
34 #endif
35 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */