Changeset 815 for firmware/trunk/libraries/webserver/webserver.h
- Timestamp:
- 08/13/08 12:48:09 (5 months ago)
- Files:
-
- 1 modified
-
firmware/trunk/libraries/webserver/webserver.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
firmware/trunk/libraries/webserver/webserver.h
r755 r815 41 41 /** 42 42 A structure that represents a key-value pair in an HTML form. 43 This structure only points at the data received by the web server - it does not copy it. So be sure 44 to note that this structure becomes invalid as soon as the data used to create is gone. 43 45 \ingroup webserver 44 46 */ 45 47 typedef struct 46 48 { 47 char *key; 48 char *value; 49 char *key; /**< A pointer to the key of this element. */ 50 char *value; /**< A pointer to the value of this element. */ 49 51 } HtmlFormElement; 50 52 51 53 /** 52 54 A structure that represents a collection of HtmlFormElement structures. 55 If you need a larger form, you can adjust \b MAX_FORM_ELEMENTS in webserver.h it accommodates 10 by default. 53 56 \ingroup webserver 54 57 */ 55 58 typedef struct 56 59 { 57 HtmlFormElement elements[MAX_FORM_ELEMENTS]; 58 int count; 60 HtmlFormElement elements[MAX_FORM_ELEMENTS]; /**< An array of form elements. */ 61 int count; /**< The number of form elements contained in this form. */ 59 62 } HtmlForm; 60 63
