Create the AHCI branch for Aman's work
[reactos.git] / sdk / tools / log2lines / stat.h
1 /*
2 * ReactOS log2lines
3 * Written by Jan Roeloffzen
4 *
5 * - Statistics
6 */
7
8 #pragma once
9
10 #include <stdio.h>
11
12 typedef struct summ_struct
13 {
14 int translated;
15 int undo;
16 int redo;
17 int skipped;
18 int diff;
19 int majordiff;
20 int revconflicts;
21 int regfound;
22 int offset_errors;
23 int total;
24 } SUMM, *PSUMM;
25
26 void stat_print(FILE *outFile, PSUMM psumm);
27 void stat_clear(PSUMM psumm);
28
29 /* EOF */