aboutsummaryrefslogtreecommitdiff
path: root/src/ld-lua-symbol-private.h
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2011-01-08 12:09:45 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2011-01-08 12:09:45 +0100
commitedd64aa1323740eb4047836bfed88266d622fa79 (patch)
treec62154c10a093e9e7f7b0b0c7a12a7d7446d844a /src/ld-lua-symbol-private.h
parent7ce03bac9d4b84842f029c8b83df120975e6164e (diff)
downloadlogdiag-edd64aa1323740eb4047836bfed88266d622fa79.tar.gz
logdiag-edd64aa1323740eb4047836bfed88266d622fa79.tar.xz
logdiag-edd64aa1323740eb4047836bfed88266d622fa79.zip
Read terminals from Lua scripts and export them.
Also add a missing part of LdSymbol API.
Diffstat (limited to 'src/ld-lua-symbol-private.h')
-rw-r--r--src/ld-lua-symbol-private.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ld-lua-symbol-private.h b/src/ld-lua-symbol-private.h
index 0e8800e..83bc646 100644
--- a/src/ld-lua-symbol-private.h
+++ b/src/ld-lua-symbol-private.h
@@ -22,6 +22,7 @@ G_BEGIN_DECLS
* @name: Name of this symbol.
* @human_name: Localized human name of this symbol.
* @area: Area of this symbol.
+ * @terminals: Terminals of this symbol.
*/
struct _LdLuaSymbolPrivate
{
@@ -29,6 +30,7 @@ struct _LdLuaSymbolPrivate
gchar *name;
gchar *human_name;
LdRectangle area;
+ LdPointArray *terminals;
};