1// LzmaBenchCon.h
2
3#ifndef __LZMABENCHCON_H
4#define __LZMABENCHCON_H
5
6#include <stdio.h>
7#include "../../../Common/Types.h"
8#ifdef EXTERNAL_LZMA
9#include "../../UI/Common/LoadCodecs.h"
10#endif
11HRESULT LzmaBenchCon(
12  #ifdef EXTERNAL_LZMA
13  CCodecs *codecs,
14  #endif
15  FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
16
17HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
18
19#endif
20
21