Subversion Repositories freemyipod

Rev

Rev 427 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 427 Rev 453
Line 66... Line 66...
66
#define EMCORE_API_VERSION 1
66
#define EMCORE_API_VERSION 1
67
 
67
 
68
/* update this to latest version if a change to the api struct breaks
68
/* update this to latest version if a change to the api struct breaks
69
   backwards compatibility (and please take the opportunity to sort in any
69
   backwards compatibility (and please take the opportunity to sort in any
70
   new function which are "waiting" at the end of the function table) */
70
   new function which are "waiting" at the end of the function table) */
71
#define EMCORE_MIN_API_VERSION 0
71
#define EMCORE_MIN_API_VERSION 1
72
 
72
 
73
/* NOTE: To support backwards compatibility, only add new functions at
73
/* NOTE: To support backwards compatibility, only add new functions at
74
         the end of the structure.  Every time you add a new function,
74
         the end of the structure.  Every time you add a new function,
75
         remember to increase EMCORE_API_VERSION. If you make changes to the
75
         remember to increase EMCORE_API_VERSION. If you make changes to the
76
         existing APIs, also update EMCORE_MIN_API_VERSION to current version */
76
         existing APIs, also update EMCORE_MIN_API_VERSION to current version */
Line 227... Line 227...
227
    typeof(disk_unmount) *disk_unmount;
227
    typeof(disk_unmount) *disk_unmount;
228
    typeof(hwkeyaes) *hwkeyaes;
228
    typeof(hwkeyaes) *hwkeyaes;
229
    typeof(hmacsha1) *hmacsha1;
229
    typeof(hmacsha1) *hmacsha1;
230
    typeof(reset) *reset;
230
    typeof(reset) *reset;
231
    typeof(int_dma_set_handler) *int_dma_set_handler;
231
    typeof(int_dma_set_handler) *int_dma_set_handler;
-
 
232
    typeof(thread_set_name) *thread_set_name;
-
 
233
    typeof(thread_set_priority) *thread_set_priority;
232
};
234
};
233
 
235
 
234
 
236
 
235
#endif
237
#endif