mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 17:15:00 -06:00
17 lines
348 B
C
Executable File
17 lines
348 B
C
Executable File
// BenchCon.h
|
|
|
|
#ifndef __BENCH_CON_H
|
|
#define __BENCH_CON_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "../../Common/CreateCoder.h"
|
|
|
|
HRESULT LzmaBenchCon(
|
|
DECL_EXTERNAL_CODECS_LOC_VARS
|
|
FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
|
|
|
|
HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
|
|
|
|
#endif
|