XFusion API v1.3.0
载入中...
搜索中...
未找到
xf_heap_config.h
浏览该文件的文档.
1
12#ifndef __XF_HEAP_CONFIG_H__
13#define __XF_HEAP_CONFIG_H__
14
15/* ==================== [Includes] ========================================== */
16
17#include "xfconfig.h"
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/* ==================== [Defines] =========================================== */
24
25#define XF_HEAP_BYTE_ALIGNMENT CONFIG_XF_HEAP_BYTE_ALIGNMENT
26
27#define XF_HEAP_STATIC_SIZE CONFIG_XF_HEAP_STATIC_SIZE
28
29#if CONFIG_XF_STDINT_ENABLE
30# include <stdint.h>
31#else
32# define XF_HEAP_INTPTR_TYPE int
33#endif
34
35/* ==================== [Typedefs] ========================================== */
36
37/* ==================== [Global Prototypes] ================================= */
38
39/* ==================== [Macros] ============================================ */
40
41#ifdef __cplusplus
42} /* extern "C" */
43#endif
44
45#endif // __XF_HEAP_CONFIG_H__