Subversion Repositories freemyipod

Rev

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

Rev 138 Rev 143
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
#include "../global.h"
28
#include "../global.h"
29
#include "../panic.h"  
29
#include "../panic.h"  
30
#include "../console.h"
30
#include "../console.h"
-
 
31
#include "../disk.h"
31
#include "../dir.h"
32
#include "../dir.h"
32
#include "../file.h"
33
#include "../file.h"
33
#include "../format.h"
34
#include "../format.h"
34
#include "../drawing.h"
35
#include "../drawing.h"
35
#include "../lcdconsole.h"
36
#include "../lcdconsole.h"
Line 50... Line 51...
50
#include "../progressbar.h"
51
#include "../progressbar.h"
51
#include "../button.h"
52
#include "../button.h"
52
#include "../clickwheel.h"
53
#include "../clickwheel.h"
53
#include "../clockgates.h"
54
#include "../clockgates.h"
54
#include "../contextswitch.h"
55
#include "../contextswitch.h"
-
 
56
#include "../hwkeyaes.h"
-
 
57
#include "../hmacsha1.h"
55
#include "../libc/include/string.h"
58
#include "../libc/include/string.h"
56
#include "../libc/include/stdlib.h"
59
#include "../libc/include/stdlib.h"
57
#include "../libc/include/stdio.h"
60
#include "../libc/include/stdio.h"
58
#include "../libc/tlsf/tlsf.h"
61
#include "../libc/tlsf/tlsf.h"
59
 
62
 
Line 214... Line 217...
214
    typeof(execfirmware) *execfirmware;
217
    typeof(execfirmware) *execfirmware;
215
    typeof(button_register_handler) *button_register_handler;
218
    typeof(button_register_handler) *button_register_handler;
216
    typeof(button_unregister_handler) *button_unregister_handler;
219
    typeof(button_unregister_handler) *button_unregister_handler;
217
    typeof(clickwheel_get_state) *clickwheel_get_state;
220
    typeof(clickwheel_get_state) *clickwheel_get_state;
218
    typeof(clockgate_enable) *clockgate_enable;
221
    typeof(clockgate_enable) *clockgate_enable;
-
 
222
    typeof(context_switch) *context_switch;
-
 
223
    typeof(disk_mount) *disk_mount;
-
 
224
    typeof(disk_unmount) *disk_unmount;
-
 
225
    typeof(hwkeyaes) *hwkeyaes;
-
 
226
    typeof(hmacsha1) *hmacsha1;
-
 
227
    typeof(reset) *reset;
219
};
228
};
220
 
229
 
221
 
230
 
222
#endif
231
#endif