Subversion Repositories freemyipod

Rev

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

Rev 124 Rev 125
Line 49... Line 49...
49
#include "../syscall.h"
49
#include "../syscall.h"
50
#include "../progressbar.h"
50
#include "../progressbar.h"
51
#include "../libc/include/string.h"
51
#include "../libc/include/string.h"
52
#include "../libc/include/stdlib.h"
52
#include "../libc/include/stdlib.h"
53
#include "../libc/include/stdio.h"
53
#include "../libc/include/stdio.h"
-
 
54
#include "../libc/tlsf/tlsf.h"
54
 
55
 
55
/* increase this every time the api struct changes */
56
/* increase this every time the api struct changes */
56
#define EMBIOS_API_VERSION 0
57
#define EMBIOS_API_VERSION 0
57
 
58
 
58
/* update this to latest version if a change to the api struct breaks
59
/* update this to latest version if a change to the api struct breaks
Line 196... Line 197...
196
    typeof(strtok_r) *strtok_r;
197
    typeof(strtok_r) *strtok_r;
197
    typeof(backlight_on) *backlight_on;
198
    typeof(backlight_on) *backlight_on;
198
    typeof(backlight_set_fade) *backlight_set_fade;
199
    typeof(backlight_set_fade) *backlight_set_fade;
199
    typeof(backlight_set_brightness) *backlight_set_brightness;
200
    typeof(backlight_set_brightness) *backlight_set_brightness;
200
    typeof(get_platform_id) *get_platform_id;
201
    typeof(get_platform_id) *get_platform_id;
-
 
202
    typeof(tlsf_create) *tlsf_create;
-
 
203
    typeof(tlsf_destroy) *tlsf_destroy;
-
 
204
    typeof(tlsf_malloc) *tlsf_malloc;
-
 
205
    typeof(tlsf_memalign) *tlsf_memalign;
-
 
206
    typeof(tlsf_realloc) *tlsf_realloc;
-
 
207
    typeof(tlsf_free) *tlsf_free;
-
 
208
    typeof(tlsf_walk_heap) *tlsf_walk_heap;
-
 
209
    typeof(tlsf_check_heap) *tlsf_check_heap;
-
 
210
    typeof(tlsf_block_size) *tlsf_block_size;
-
 
211
    typeof(tlsf_overhead) *tlsf_overhead;
201
};
212
};
202
 
213
 
203
 
214
 
204
#endif
215
#endif