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