mirror of
https://github.com/reactos/reactos.git
synced 2026-09-11 20:32:22 +08:00
- Whilst this is non-standard and potentially makes the code less portable, it's supported by both gcc and msvc and should bringg increased compilation speed due to its optimized behaviour (doesn't need to invoke the preprocessor) - Patch by Amine Khaldi [amine.khaldi@reactos.org] svn path=/trunk/; revision=45685
30 lines
419 B
C
30 lines
419 B
C
/*
|
|
* ReactOS log2lines
|
|
* Written by Jan Roeloffzen
|
|
*
|
|
* - Statistics
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
typedef struct summ_struct
|
|
{
|
|
int translated;
|
|
int undo;
|
|
int redo;
|
|
int skipped;
|
|
int diff;
|
|
int majordiff;
|
|
int revconflicts;
|
|
int regfound;
|
|
int offset_errors;
|
|
int total;
|
|
} SUMM, *PSUMM;
|
|
|
|
void stat_print(FILE *outFile, PSUMM psumm);
|
|
void stat_clear(PSUMM psumm);
|
|
|
|
/* EOF */
|