| | 2 | Initializes a display form. |
| | 3 | |
| | 4 | {{{ |
| | 5 | void FORM_INIT(EVENT_FNC eventShow, EVENT_FNC eventProcess, EVENT_FNC event_hide, EVENT_FNC event_done, int nFlag); |
| | 6 | }}} |
| | 7 | |
| | 8 | == Parameters == |
| | 9 | |
| | 10 | * eventShow - event function that is called to display additional items such as titles. |
| | 11 | * eventProcess - event function that is called every few milliseconds to do any application processing desired |
| | 12 | * eventHide - event function that is called when the form is hidden |
| | 13 | * eventDone - event function that is called when the form is exiting |
| | 14 | * nFlag - form flags |
| | 15 | |
| | 16 | == Return Value == |
| | 17 | |
| | 18 | This function oes not return any value |
| | 19 | |
| | 20 | == Remarks == |
| | 21 | |
| | 22 | == Examples == |
| | 23 | |
| | 24 | {{{ |
| | 25 | }}} |
| | 26 | |
| | 27 | |
| | 28 | == See Also == |
| | 29 | |
| | 30 | * FORM_ADD_INPUT |
| | 31 | * FORM_ADD_BUTTON |
| | 32 | * FORM_SHOW |
| | 33 | * FORM_RUN |
| | 34 | |