| Line 71... |
Line 71... |
| 71 |
#ifdef ARM_ARCH
|
71 |
#ifdef ARM_ARCH
|
| 72 |
#include "../arm/arm-support.h"
|
72 |
#include "../arm/arm-support.h"
|
| 73 |
#endif
|
73 |
#endif
|
| 74 |
|
74 |
|
| 75 |
/* increase this every time the api struct changes */
|
75 |
/* increase this every time the api struct changes */
|
| 76 |
#define EMCORE_API_VERSION 6
|
76 |
#define EMCORE_API_VERSION 7
|
| 77 |
|
77 |
|
| 78 |
/* update this to latest version if a change to the api struct breaks
|
78 |
/* update this to latest version if a change to the api struct breaks
|
| 79 |
backwards compatibility (and please take the opportunity to sort in any
|
79 |
backwards compatibility (and please take the opportunity to sort in any
|
| 80 |
new function which are "waiting" at the end of the function table) */
|
80 |
new function which are "waiting" at the end of the function table) */
|
| 81 |
#define EMCORE_MIN_API_VERSION 4
|
81 |
#define EMCORE_MIN_API_VERSION 7
|
| 82 |
|
82 |
|
| 83 |
/* NOTE: To support backwards compatibility, only add new functions at
|
83 |
/* NOTE: To support backwards compatibility, only add new functions at
|
| 84 |
the end of the structure. Every time you add a new function,
|
84 |
the end of the structure. Every time you add a new function,
|
| 85 |
remember to increase EMCORE_API_VERSION. If you make changes to the
|
85 |
remember to increase EMCORE_API_VERSION. If you make changes to the
|
| 86 |
existing APIs, also update EMCORE_MIN_API_VERSION to current version */
|
86 |
existing APIs, also update EMCORE_MIN_API_VERSION to current version */
|