aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include-abi/odp/api/abi/comp.h
blob: ac3d3a4a9395519e6f0bc4efc27ba7f5749dfacd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* Copyright (c) 2018, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#ifndef ODP_ABI_COMP_H_
#define ODP_ABI_COMP_H_

#include <odp/api/plat/strong_types.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

/** @ingroup odp_compression
 *  @{
 */

typedef ODP_HANDLE_T(odp_comp_session_t);

#define ODP_COMP_SESSION_INVALID _odp_cast_scalar(odp_comp_session_t, 0)

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif