Changes between Version 18 and Version 19 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT


Ignore:
Timestamp:
03/12/25 08:29:17 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v18 v19  
    22Initializes a display form.
    33
    4 {{{
     4{{{#!c++
    55void FORM_INIT(formName name, EVENT_FNC eventShow, EVENT_FNC eventProcess, EVENT_FNC eventHide, EVENT_FNC eventDone, int nFlag);
    66}}}
     
    3131
    3232FORM_INIT is a macro to simplify the initialization of forms. The preprocessor will convert this to a CForm initialization of the specified form name.
    33 {{{
     33{{{#!c++
    3434#define FORM_INIT(f, show, process, hide, done, flg) CForm form##f((show), (process), (hide), (done), (flg))
    3535}}}
     
    3737== Examples ==
    3838
    39 {{{
     39{{{#!c++
    4040void IDScreen(void)
    4141{