comparison packages/redboot/current/include/redboot.h @ 1312:08edfb52f9cd

Improve FIS directory handling - should work with small block size devices
author gthomas
date Wed, 15 Oct 2003 15:52:02 +0000
parents 13ba50dd5a8e
children 43a89c18d005
comparison
equal deleted inserted replaced
1311:e3df0ec06a22 1312:08edfb52f9cd
247 extern _cmd_entry(_s_,_h_,_u_,_f_,_subs_,_sube_,_n_) 247 extern _cmd_entry(_s_,_h_,_u_,_f_,_subs_,_sube_,_n_)
248 #define local_cmd_entry(_s_,_h_,_u_,_f_,_n_) \ 248 #define local_cmd_entry(_s_,_h_,_u_,_f_,_n_) \
249 static _cmd_entry(_s_,_h_,_u_,_f_,0,0,_n_) 249 static _cmd_entry(_s_,_h_,_u_,_f_,0,0,_n_)
250 250
251 // Initialization functions 251 // Initialization functions
252 #define RedBoot_INIT_FIRST 0000 252 #define RedBoot_INIT_FIRST 0000
253 #define RedBoot_INIT_SECOND 0100
253 // Specify a 3 digit numeric value for proper prioritizing 254 // Specify a 3 digit numeric value for proper prioritizing
254 #define RedBoot_INIT_PRIO(_n_) 1##_n_ 255 #define RedBoot_INIT_PRIO(_n_) 1##_n_
255 #define RedBoot_INIT_LAST 9999 256 #define RedBoot_INIT_LAST 9999
256 typedef void void_fun(void); 257 typedef void void_fun(void);
257 typedef void_fun *void_fun_ptr; 258 typedef void_fun *void_fun_ptr;