ET1202020_SIL

This commit is contained in:
Prince_an
2020-12-30 22:00:38 +08:00
parent d5fe70ac0e
commit 9500850836
471 changed files with 49132 additions and 47718 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_ */