Reactos
at master 29 lines 419 B view raw
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{ 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 26void stat_print(FILE *outFile, PSUMM psumm); 27void stat_clear(PSUMM psumm); 28 29/* EOF */