Subversion Repositories freemyipod

Rev

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

Rev 132 Rev 138
Line 29... Line 29...
29
#include "../panic.h"  
29
#include "../panic.h"  
30
#include "../console.h"
30
#include "../console.h"
31
#include "../dir.h"
31
#include "../dir.h"
32
#include "../file.h"
32
#include "../file.h"
33
#include "../format.h"
33
#include "../format.h"
-
 
34
#include "../drawing.h"
34
#include "../lcdconsole.h"
35
#include "../lcdconsole.h"
35
#include "../storage.h"
36
#include "../storage.h"
36
#include "../shutdown.h"
37
#include "../shutdown.h"
37
#include "../thread.h"
38
#include "../thread.h"
38
#include "../ucl.h"
39
#include "../ucl.h"
Line 47... Line 48...
47
#include "../backlight.h"
48
#include "../backlight.h"
48
#include "../syscall.h"
49
#include "../syscall.h"
49
#include "../progressbar.h"
50
#include "../progressbar.h"
50
#include "../button.h"
51
#include "../button.h"
51
#include "../clickwheel.h"
52
#include "../clickwheel.h"
-
 
53
#include "../clockgates.h"
52
#include "../contextswitch.h"
54
#include "../contextswitch.h"
53
#include "../libc/include/string.h"
55
#include "../libc/include/string.h"
54
#include "../libc/include/stdlib.h"
56
#include "../libc/include/stdlib.h"
55
#include "../libc/include/stdio.h"
57
#include "../libc/include/stdio.h"
56
#include "../libc/tlsf/tlsf.h"
58
#include "../libc/tlsf/tlsf.h"
Line 88... Line 90...
88
    typeof(readdir) *readdir;
90
    typeof(readdir) *readdir;
89
    typeof(mkdir) *mkdir;
91
    typeof(mkdir) *mkdir;
90
    typeof(rmdir) *rmdir;
92
    typeof(rmdir) *rmdir;
91
    typeof(renderbmp) *renderbmp;
93
    typeof(renderbmp) *renderbmp;
92
    typeof(renderchar) *renderchar;
94
    typeof(renderchar) *renderchar;
-
 
95
    typeof(rendertext) *rendertext;
-
 
96
    typeof(renderfillrect) *renderfillrect;
-
 
97
    typeof(get_font_width) *get_font_width;
-
 
98
    typeof(get_font_height) *get_font_height;
93
    typeof(execimage) *execimage;
99
    typeof(execimage) *execimage;
94
    typeof(ftruncate) *ftruncate;
100
    typeof(ftruncate) *ftruncate;
95
    typeof(fsync) *fsync;
101
    typeof(fsync) *fsync;
96
    typeof(close) *close;
102
    typeof(close) *close;
97
    typeof(write) *write;
103
    typeof(write) *write;
Line 145... Line 151...
145
    typeof(bootflash_getaddr) *bootflash_getaddr;
151
    typeof(bootflash_getaddr) *bootflash_getaddr;
146
    typeof(bootflash_read) *bootflash_read;
152
    typeof(bootflash_read) *bootflash_read;
147
    typeof(bootflash_readraw) *bootflash_readraw;
153
    typeof(bootflash_readraw) *bootflash_readraw;
148
    typeof(bootflash_writeraw) *bootflash_writeraw;
154
    typeof(bootflash_writeraw) *bootflash_writeraw;
149
    typeof(bootflash_getrawaddr) *bootflash_getrawaddr;
155
    typeof(bootflash_getrawaddr) *bootflash_getrawaddr;
-
 
156
    typeof(bootflash_is_memmapped) *bootflash_is_memmapped;
150
    typeof(read_native_timer) *read_native_timer;
157
    typeof(read_native_timer) *read_native_timer;
151
    typeof(read_usec_timer) *read_usec_timer;
158
    typeof(read_usec_timer) *read_usec_timer;
152
    typeof(i2c_send) *i2c_send;
159
    typeof(i2c_send) *i2c_send;
153
    typeof(i2c_recv) *i2c_recv;
160
    typeof(i2c_recv) *i2c_recv;
154
    typeof(i2c_sendbyte) *i2c_sendbyte;
161
    typeof(i2c_sendbyte) *i2c_sendbyte;
Line 206... Line 213...
206
    typeof(tlsf_overhead) *tlsf_overhead;
213
    typeof(tlsf_overhead) *tlsf_overhead;
207
    typeof(execfirmware) *execfirmware;
214
    typeof(execfirmware) *execfirmware;
208
    typeof(button_register_handler) *button_register_handler;
215
    typeof(button_register_handler) *button_register_handler;
209
    typeof(button_unregister_handler) *button_unregister_handler;
216
    typeof(button_unregister_handler) *button_unregister_handler;
210
    typeof(clickwheel_get_state) *clickwheel_get_state;
217
    typeof(clickwheel_get_state) *clickwheel_get_state;
-
 
218
    typeof(clockgate_enable) *clockgate_enable;
211
};
219
};
212
 
220
 
213
 
221
 
214
#endif
222
#endif