--- trunk/src/gpx.h 2009/06/20 11:08:47 1 +++ trunk/src/gpx.h 2009/10/19 18:21:20 137 @@ -76,17 +76,22 @@ #define LOG_TYPE_ARCHIVE 15 #define LOG_TYPE_MAX (LOG_TYPE_ARCHIVE) +typedef struct { + char *name; + unsigned int id; +} user_t; typedef struct tb { char *name; char *ref; + unsigned int id; struct tb *next; } tb_t; typedef struct log { int day, month, year; int type; - char *finder; + user_t *finder; char *text; struct log *next; @@ -120,7 +125,9 @@ /* cache information */ char *id; char *name; - char *owner; + + user_t *owner; + int container; int type; char *short_description, *long_description;