5 #ifndef _WEB_FORM_VALUES_H_ 6 #define _WEB_FORM_VALUES_H_ 9 #define DEF_WIDTH (250) 11 #define DEF_FRED (150) 12 #define DEF_FGREEN (0) 13 #define DEF_FBLUE (250) 14 #define DEF_BRED (250) 15 #define DEF_BGREEN (150) 17 #define DEF_TRED (255) 18 #define DEF_TGREEN (255) 19 #define DEF_TBLUE (255) 26 uint16_t m_ht = DEF_HT;
27 uint16_t m_wid = DEF_WIDTH;
28 uint8_t m_fillRed = DEF_FRED;
29 uint8_t m_fillGreen = DEF_FGREEN;
30 uint8_t m_fillBlue = DEF_FBLUE;
31 uint8_t m_borderRed = DEF_BRED;
32 uint8_t m_borderGreen = DEF_BGREEN;
33 uint8_t m_borderBlue = DEF_BBLUE;
34 uint8_t m_textRed = DEF_TRED;
35 uint8_t m_textGreen = DEF_TGREEN;
36 uint8_t m_textBlue = DEF_TBLUE;
39 WebFormValues(PCSTR url);
40 void WriteUrl(
int sock, PCSTR Prefix);