22 lines
490 B
C
22 lines
490 B
C
#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_ */
|
|
|