/** Type define for a MIME type handler. */\r
typedef struct\r
{\r
- char Extension[4]; /**< 3 or less character file extension */\r
- char MIMEType[30]; /**< Appropriate MIME type to send when the extension is encountered */\r
+ char* Extension; /**< File extension (no leading '.' character) */\r
+ char* MIMEType; /**< Appropriate MIME type to send when the extension is encountered */\r
} MIME_Type_t;\r
\r
/* Macros: */\r