blob: 730503ff1806a6fecc5f4706c2e7559b71a30fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _RPMLIBLUA_H
#define _RPMLIBLUA_H
#ifdef __cplusplus
extern "C" {
#endif
/* Initialize Lua subsystem & register all our extensions */
void rpmLuaInit(void);
/* Shutdown Lua subsystem */
void rpmLuaFree(void);
#ifdef __cplusplus
}
#endif
#endif /* _RPMLIBLUA_H */
|