guowenxue
2020-07-02 e8f71869179f5c099228958a3d869b20005f7273
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _DECODER_H_
#define _DECODER_H_
 
struct code_msg{
    char get_type_name[10];
    char get_data[20];
};
 
#ifdef __cplusplus
extern "C"{
#endif
 
int decoder(int carame_num,struct code_msg* code_msg);
 
#ifdef __cplusplus
}
#endif
 
#endif