1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-18 02:55:12 +00:00

text_object: introduce a generic payload pointer

This commit is contained in:
Phil Sutter 2009-10-03 16:08:33 +02:00
parent c3430dc587
commit eff3f75014

View File

@ -442,6 +442,7 @@ struct text_object {
struct text_object *next, *prev; /* doubly linked list of text objects */
struct text_object *sub; /* for objects parsing text into objects */
union {
void *opaque; /* new style generic per object data */
char *s; /* some string */
int i; /* some integer */
long l; /* some other integer */