diff options
Diffstat (limited to 'src/ld-lua-symbol-private.h')
-rw-r--r-- | src/ld-lua-symbol-private.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ld-lua-symbol-private.h b/src/ld-lua-symbol-private.h new file mode 100644 index 0000000..53ef1ac --- /dev/null +++ b/src/ld-lua-symbol-private.h @@ -0,0 +1,32 @@ +/* + * ld-lua-symbol-private.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_SYMBOL_PRIVATE_H__ +#define __LD_LUA_SYMBOL_PRIVATE_H__ + +G_BEGIN_DECLS + + +/*< private_header >*/ + +/* + * LdLuaSymbolPrivate: + * @lua: Parent #LdLua object. + */ +struct _LdLuaSymbolPrivate +{ + LdLua *lua; +}; + + +G_END_DECLS + +#endif /* ! __LD_LUA_SYMBOL_PRIVATE_H__ */ + |