mirror of
https://github.com/QIDITECH/QIDI_Q1_Pro.git
synced 2026-01-30 23:48:43 +03:00
12 lines
278 B
C
12 lines
278 B
C
|
|
#ifndef MAKERBASE_PARSE_MESSAGE
|
|||
|
|
#define MAKERBASE_PARSE_MESSAGE
|
|||
|
|
/**
|
|||
|
|
* 通过发送的 method id 来获得相应的回调信息,使用不同的 response type id 可以通过
|
|||
|
|
* switch 的方式,快速找到相应的解析方式
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
void *json_parse(void *arg);
|
|||
|
|
|
|||
|
|
#endif
|