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