b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 1 | #ifndef LIBLYNQ_AT_COMMON_H |
2 | #define LIBLYNQ_AT_COMMON_H 1 | ||||
3 | #ifdef __cplusplus | ||||
4 | extern "C" { | ||||
5 | #endif | ||||
6 | |||||
7 | typedef void ( *lynq_atsvc_incb )( const char *input,const int length); | ||||
8 | typedef void ( *lynq_atsvc_outcb )(char *output, int out_max_size, int mode); | ||||
9 | lynq_atsvc_incb lynq_register_at_common(lynq_atsvc_outcb out_cb); | ||||
10 | |||||
11 | #ifdef __cplusplus | ||||
12 | } | ||||
13 | #endif | ||||
14 | #endif |