1// BenchCon.h
2
3#ifndef __BENCH_CON_H
4#define __BENCH_CON_H
5
6#include <stdio.h>
7
8#include "../../Common/CreateCoder.h"
9
10HRESULT LzmaBenchCon(
11    DECL_EXTERNAL_CODECS_LOC_VARS
12    FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
13
14HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
15
16#endif
17