添加了lib ;删除了重复定义的.c;添加了未包含的.c .h

This commit is contained in:
zhouzan
2023-07-08 14:03:16 +08:00
parent 2db6cfab9f
commit 7514929f24
11 changed files with 522 additions and 410 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef _PARAM_PREM_H_
#define _PARAM_PREM_H_
#define CAT_I(a, b) a##b
#define CAT(a, b) CAT_I(a, b)
// Macro for adding quotes
#define STRINGIFY(X) STRINGIFY2(X)
#define STRINGIFY2(X) #X
#include STRINGIFY(HDR_MDL)
#define ap_GetCAPIStaticMap_fcn CAT(CAPI_MDL,_GetCAPIStaticMap)
#define ap_M_ptr CAT(CAPI_MDL,_M)
#define ap_step CAT(CAPI_MDL,_step)
#define ap_init CAT(CAPI_MDL,_initialize)
#define ap_U CAT(CAPI_MDL,_U)
#define ap_Y CAT(CAPI_MDL,_Y)
#endif /* _PARAM_PREM_H_ */