1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-20 03:51:18 +00:00
conky/src/llua.h

15 lines
272 B
C
Raw Normal View History

2009-05-15 18:08:51 +00:00
#ifndef LUA_H_
#define LUA_H_
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
void llua_init();
void llua_load(const char *script);
char *llua_getstring(const char *args);
int llua_getpercent(const char *args, int *per);
void llua_close();
#endif /* LUA_H_*/