1/* SPDX-License-Identifier: BSD-3-Clause */
2/* Copyright(c) 2007-2022 Intel Corporation */
3/**
4 *****************************************************************************
5 * @file dc_error_counter.h
6 *
7 * @ingroup Dc_DataCompression
8 *
9 * @description
10 *      Definition of the Data Compression Error Counter parameters.
11 *
12 *****************************************************************************/
13#ifndef DC_ERROR_COUNTER_H
14#define DC_ERROR_COUNTER_H
15
16#include "cpa_types.h"
17#include "cpa_dc.h"
18
19#define MAX_DC_ERROR_TYPE 20
20
21void dcErrorLog(CpaDcReqStatus dcError);
22Cpa64U getDcErrorCounter(CpaDcReqStatus dcError);
23
24#endif /* DC_ERROR_COUNTER_H */
25