]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/redboot/v2_0/include/wince.h
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / redboot / v2_0 / include / wince.h
1 #ifndef __WINCE_H__
2 #define __WINCE_H__
3
4 // Bin image parse results
5
6 #define CE_PR_EOF                               0
7 #define CE_PR_MORE                              1
8 #define CE_PR_ERROR                             2
9
10
11 bool ce_bin_load(void* image, int imglen);
12 bool ce_is_bin_image(void* image, int imglen);
13 void ce_bin_init_parser(void);
14 int ce_bin_parse_next(void* parseBuffer, int len);
15
16 #endif
17
18
19
20
21