Update log2lines to ver. 2.2. Jan Roeloffzen, bug #4342.
[reactos.git] / reactos / tools / log2lines / list.h
index 4406a41..fa426d4 100644 (file)
@@ -6,14 +6,16 @@ typedef struct entry_struct
     char *name;
     char *path;
     size_t ImageBase;
+    size_t RelBase;
+    size_t Size;
     struct entry_struct *pnext;
-} LIST_MEMBER,*PLIST_MEMBER;
+} LIST_MEMBER, *PLIST_MEMBER;
 
 typedef struct list_struct
 {
     PLIST_MEMBER phead;
     PLIST_MEMBER ptail;
-} LIST,*PLIST;
+} LIST, *PLIST;
 
 PLIST_MEMBER entry_lookup(PLIST list, char *name);
 PLIST_MEMBER entry_delete(PLIST_MEMBER pentry);