Obsolete unused backup project such as OK6410
guowenxue
2019-08-02 4ea20bd9669099d7739d7e2f1af4f8ba8538c2db
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