xref: /reactos/sdk/tools/log2lines/log2lines.h (revision 177ae91b)
1 #pragma once
2 
3 #include <stdio.h>
4 #include <limits.h>
5 #include <rsym.h>
6 
7 #include "config.h"
8 #include "stat.h"
9 #include "list.h"
10 
11 
12 struct lineinfo_struct
13 {
14     int     valid;
15     char    file1[LINESIZE];
16     char    func1[NAMESIZE];
17     int     nr1;
18     char    file2[LINESIZE];
19     char    func2[NAMESIZE];
20     int     nr2;
21 };
22 
23 typedef struct lineinfo_struct LINEINFO;
24 
25 extern SUMM summ;
26 extern LIST cache;
27 extern FILE *logFile;
28 extern LINEINFO lastLine;
29 extern LIST sources;
30 
31 /* EOF */
32