evc_sm.h 264 B

1234567891011121314151617181920
  1. #ifndef __evc_SM_H__
  2. #define __evc_SM_H__
  3. enum evc_err_t{
  4. EVCERR_NONE = 0,
  5. // launch
  6. EVCERR_LAUNCH_COMMERR,
  7. // err
  8. EVCERR_ERR_COMMERR,
  9. // ready
  10. EVCERR_READY_COMMERR,
  11. };
  12. int evc_sm_init(int idx);
  13. void* evc_sm( int idx );
  14. #endif