diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2010-09-25 16:03:48 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2010-10-17 14:05:53 +0200 |
commit | 5da5689541aa5bca6b056a2372bcd3410f6475b2 (patch) | |
tree | d1c3e0c866e3f0c6b0efa047737e331beb6a8494 /src/ld-lua.h | |
parent | 25668c20731722316ca78767ca0cddbf04a988a7 (diff) | |
download | logdiag-5da5689541aa5bca6b056a2372bcd3410f6475b2.tar.gz logdiag-5da5689541aa5bca6b056a2372bcd3410f6475b2.tar.xz logdiag-5da5689541aa5bca6b056a2372bcd3410f6475b2.zip |
WIP: Refactoring of the library and symbols
Diffstat (limited to 'src/ld-lua.h')
-rw-r--r-- | src/ld-lua.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ld-lua.h b/src/ld-lua.h new file mode 100644 index 0000000..2c41579 --- /dev/null +++ b/src/ld-lua.h @@ -0,0 +1,27 @@ +/* + * ld-lua.h + * + * This file is a part of logdiag. + * Copyright Přemysl Janouch 2010. All rights reserved. + * + * See the file LICENSE for licensing information. + * + */ + +#ifndef __LD_LUA_H__ +#define __LD_LUA_H__ + +G_BEGIN_DECLS + + +lua_State * +ld_lua_init (void); + +void +ld_lua_destroy (lua_State *L); + + +G_END_DECLS + +#endif /* ! __LD_LUA_H__ */ + |