blob: cc15ae9591a78ae378c9847fe1308859b9f17639 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _RPMLIBLUA_H
#define _RPMLIBLUA_H
/* Initialize Lua subsystem & register all our extensions */
void rpmLuaInit(void);
/* Shutdown Lua subsystem */
void rpmLuaFree(void);
#endif /* _RPMLIBLUA_H */
|