1 /* 2 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /*! @file 8 @brief This file contains basic type definitions that are platform-dependent. 9 */ 10 #ifndef _CC_PAL_TYPES_PLAT_H 11 #define _CC_PAL_TYPES_PLAT_H 12 /* Host specific types for standard (ISO-C99) compilant platforms */ 13 14 #include <stddef.h> 15 #include <stdint.h> 16 17 typedef uint32_t CCStatus; 18 19 #define CCError_t CCStatus 20 #define CC_INFINITE 0xFFFFFFFF 21 22 #define CEXPORT_C 23 #define CIMPORT_C 24 25 #endif /*_CC_PAL_TYPES_PLAT_H*/ 26