Obsolete unused backup project such as OK6410
guowenxue
2019-08-03 40bf88353802901069aa39896a5052162f7eca05
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