ReactOS 0.4.15-dev-7934-g1dc8d80
stat.h
Go to the documentation of this file.
1/*
2 * ReactOS log2lines
3 * Written by Jan Roeloffzen
4 *
5 * - Statistics
6 */
7
8#pragma once
9
10#include <stdio.h>
11
12typedef struct summ_struct
13{
15 int undo;
16 int redo;
18 int diff;
23 int total;
25
26void stat_print(FILE *outFile, PSUMM psumm);
27void stat_clear(PSUMM psumm);
28
29/* EOF */
int offset_errors
Definition: stat.h:22
int translated
Definition: stat.h:14
int undo
Definition: stat.h:15
int skipped
Definition: stat.h:17
int regfound
Definition: stat.h:21
int total
Definition: stat.h:23
int majordiff
Definition: stat.h:19
int revconflicts
Definition: stat.h:20
int diff
Definition: stat.h:18
int redo
Definition: stat.h:16
struct summ_struct * PSUMM
void stat_print(FILE *outFile, PSUMM psumm)
Definition: stat.c:17
struct summ_struct SUMM
void stat_clear(PSUMM psumm)
Definition: stat.c:41