Subversion Repositories freemyipod

Rev

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

Rev 118 Rev 122
Line 45... Line 45...
45
#include "../nand.h"
45
#include "../nand.h"
46
#include "../power.h"
46
#include "../power.h"
47
#include "../execimage.h"
47
#include "../execimage.h"
48
#include "../backlight.h"
48
#include "../backlight.h"
49
#include "../syscall.h"
49
#include "../syscall.h"
-
 
50
#include "../progressbar.h"
50
#include "../libc/include/string.h"
51
#include "../libc/include/string.h"
51
#include "../libc/include/stdlib.h"
52
#include "../libc/include/stdlib.h"
52
#include "../libc/include/stdio.h"
53
#include "../libc/include/stdio.h"
53
 
54
 
54
/* increase this every time the api struct changes */
55
/* increase this every time the api struct changes */
Line 105... Line 106...
105
    typeof(lcdconsole_write_noblit) *lcdconsole_write_noblit;
106
    typeof(lcdconsole_write_noblit) *lcdconsole_write_noblit;
106
    typeof(lcdconsole_update) *lcdconsole_update;
107
    typeof(lcdconsole_update) *lcdconsole_update;
107
    typeof(lcdconsole_putc) *lcdconsole_putc;
108
    typeof(lcdconsole_putc) *lcdconsole_putc;
108
    typeof(lcdconsole_puts) *lcdconsole_puts;
109
    typeof(lcdconsole_puts) *lcdconsole_puts;
109
    typeof(lcdconsole_write) *lcdconsole_write;
110
    typeof(lcdconsole_write) *lcdconsole_write;
-
 
111
    typeof(lcdconsole_get_current_x) *lcdconsole_get_current_x;
-
 
112
    typeof(lcdconsole_get_current_y) *lcdconsole_get_current_y;
-
 
113
    typeof(lcdconsole_get_lineend_x) *lcdconsole_get_lineend_x;
-
 
114
    typeof(lcdconsole_get_lineend_y) *lcdconsole_get_lineend_y;
-
 
115
    typeof(progressbar_init) *progressbar_init;
-
 
116
    typeof(progressbar_setpos) *progressbar_setpos;
110
    typeof(shutdown) *shutdown;
117
    typeof(shutdown) *shutdown;
111
    typeof(storage_read_sectors_md) *storage_read_sectors_md;
118
    typeof(storage_read_sectors_md) *storage_read_sectors_md;
112
    typeof(storage_write_sectors_md) *storage_write_sectors_md;
119
    typeof(storage_write_sectors_md) *storage_write_sectors_md;
113
    typeof(strcasecmp) *strcasecmp;
120
    typeof(strcasecmp) *strcasecmp;
114
    typeof(strncasecmp) *strncasecmp;
121
    typeof(strncasecmp) *strncasecmp;
Line 150... Line 157...
150
    typeof(displaylcd_busy) *displaylcd_busy;
157
    typeof(displaylcd_busy) *displaylcd_busy;
151
    typeof(displaylcd_safe) *displaylcd_safe;
158
    typeof(displaylcd_safe) *displaylcd_safe;
152
    typeof(lcd_get_width) *lcd_get_width;
159
    typeof(lcd_get_width) *lcd_get_width;
153
    typeof(lcd_get_height) *lcd_get_height;
160
    typeof(lcd_get_height) *lcd_get_height;
154
    typeof(lcd_get_bytes_per_pixel) *lcd_get_bytes_per_pixel;
161
    typeof(lcd_get_bytes_per_pixel) *lcd_get_bytes_per_pixel;
-
 
162
    typeof(lcd_translate_color) *lcd_translate_color;
155
    typeof(clean_dcache) *clean_dcache;
163
    typeof(clean_dcache) *clean_dcache;
156
    typeof(invalidate_dcache) *invalidate_dcache;
164
    typeof(invalidate_dcache) *invalidate_dcache;
157
    typeof(invalidate_icache) *invalidate_icache;
165
    typeof(invalidate_icache) *invalidate_icache;
158
    typeof(nand_read_page) *nand_read_page;
166
    typeof(nand_read_page) *nand_read_page;
159
    typeof(nand_block_erase) *nand_block_erase;
167
    typeof(nand_block_erase) *nand_block_erase;