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