DAM_private.h 615 B

123456789101112131415161718192021222324252627
  1. #ifndef RTW_HEADER_DAM_private_h_
  2. #define RTW_HEADER_DAM_private_h_
  3. #include "rtwtypes.h"
  4. #include "BCUDisp.h"
  5. #include "DAM.h"
  6. #include "DAM_types.h"
  7. #ifndef rtmGetErrorStatus
  8. #define rtmGetErrorStatus(rtm) (*((rtm)->errorStatus))
  9. #endif
  10. #ifndef rtmSetErrorStatus
  11. #define rtmSetErrorStatus(rtm, val) (*((rtm)->errorStatus) = (val))
  12. #endif
  13. #ifndef rtmGetErrorStatusPointer
  14. #define rtmGetErrorStatusPointer(rtm) (rtm)->errorStatus
  15. #endif
  16. #ifndef rtmSetErrorStatusPointer
  17. #define rtmSetErrorStatusPointer(rtm, val) ((rtm)->errorStatus = (val))
  18. #endif
  19. extern const ConstB_DAM_h_T DAM_ConstB;
  20. #endif