1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  |   
 |    
 |  #ifndef __RK_AIQ_USER_API2_COMMON_H__ 
 |  #define __RK_AIQ_USER_API2_COMMON_H__ 
 |    
 |  #ifdef __cplusplus 
 |  extern "C" { 
 |  #endif 
 |    
 |  typedef enum opMode_e { 
 |      OP_AUTO   = 0, 
 |      OP_MANUAL = 1, 
 |      OP_SEMI_AUTO = 2, 
 |      OP_INVAL 
 |  } opMode_t; 
 |    
 |    
 |  #ifdef __cplusplus 
 |  } 
 |  #endif 
 |    
 |  #endif  /*__RK_AIQ_USER_API2_COMMON_H__*/ 
 |  
  |