123456789101112131415161718192021222324252627 |
- #ifndef RTW_HEADER_DAM_private_h_
- #define RTW_HEADER_DAM_private_h_
- #include "rtwtypes.h"
- #include "BCUDisp.h"
- #include "DAM.h"
- #include "DAM_types.h"
- #ifndef rtmGetErrorStatus
- #define rtmGetErrorStatus(rtm) (*((rtm)->errorStatus))
- #endif
- #ifndef rtmSetErrorStatus
- #define rtmSetErrorStatus(rtm, val) (*((rtm)->errorStatus) = (val))
- #endif
- #ifndef rtmGetErrorStatusPointer
- #define rtmGetErrorStatusPointer(rtm) (rtm)->errorStatus
- #endif
- #ifndef rtmSetErrorStatusPointer
- #define rtmSetErrorStatusPointer(rtm, val) ((rtm)->errorStatus = (val))
- #endif
- extern const ConstB_DAM_h_T DAM_ConstB;
- #endif
|