Subversion Repositories freemyipod

Rev

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

Rev 763 Rev 814
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 5
76
#define EMCORE_API_VERSION 6
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 4
Line 283... Line 283...
283
    typeof(realign) *realign;
283
    typeof(realign) *realign;
284
    typeof(fat_size_mv) *fat_size_mv;
284
    typeof(fat_size_mv) *fat_size_mv;
285
    typeof(rtc_read_datetime) *rtc_read_datetime;
285
    typeof(rtc_read_datetime) *rtc_read_datetime;
286
    typeof(rtc_write_datetime) *rtc_write_datetime;
286
    typeof(rtc_write_datetime) *rtc_write_datetime;
287
    typeof(accel_read_force_vector) *accel_read_force_vector;
287
    typeof(accel_read_force_vector) *accel_read_force_vector;
-
 
288
    typeof(reown_file) *reown_file;
-
 
289
    typeof(reown_dir) *reown_dir;
288
};
290
};
289
 
291
 
290
 
292
 
291
#endif
293
#endif