1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef __FSDATA_H__
- #define __FSDATA_H__
- struct fsdata_file {
- const struct fsdata_file *next;
- const unsigned char *name;
- const unsigned char *data;
- int len;
- u8_t http_header_included;
- #if HTTPD_PRECALCULATED_CHECKSUM
- u16_t chksum_count;
- const struct fsdata_chksum *chksum;
- #endif
- };
- struct fsdata_file_noconst {
- struct fsdata_file *next;
- char *name;
- char *data;
- int len;
- };
- #endif
|