Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT


Ignore:
Timestamp:
08/20/10 10:29:57 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT

    v2 v3  
    11= FORM_INIT =
     2Initializes a display form.
     3
     4{{{
     5void 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
     18This 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