LzmaBenchCon.h 437 B

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