123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #ifndef _ANT_STRUCT_SERIALIZATION_
- #define _ANT_STRUCT_SERIALIZATION_
- uint32_t ANT_ENABLE_enc( void const * const p_void_enable_params,
- uint8_t * const p_buf,
- uint32_t buf_len,
- uint32_t * const p_index);
- uint32_t ANT_ENABLE_dec( uint8_t const * const p_buf,
- uint32_t buf_len,
- uint32_t * const p_index,
- void * const p_void_enable_params);
- uint32_t ant_evt_t_enc( void const * const p_void_ant_evt,
- uint8_t * const p_buf,
- uint32_t buf_len,
- uint32_t * const p_index);
- uint32_t ant_evt_t_dec( uint8_t const * const p_buf,
- uint32_t buf_len,
- uint32_t * const p_index,
- void * const p_void_ant_evt);
- #endif
|