aboutsummaryrefslogtreecommitdiff
path: root/src/ld-lua-symbol-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ld-lua-symbol-private.h')
-rw-r--r--src/ld-lua-symbol-private.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ld-lua-symbol-private.h b/src/ld-lua-symbol-private.h
index 53ef1ac..73bed20 100644
--- a/src/ld-lua-symbol-private.h
+++ b/src/ld-lua-symbol-private.h
@@ -19,10 +19,16 @@ G_BEGIN_DECLS
/*
* LdLuaSymbolPrivate:
* @lua: Parent #LdLua object.
+ * @name: Name of this symbol.
+ * @human_name: Localized human name of this symbol.
+ * @area: Area of this symbol.
*/
struct _LdLuaSymbolPrivate
{
LdLua *lua;
+ gchar *name;
+ gchar *human_name;
+ LdSymbolArea area;
};