Changes between Version 5 and Version 6 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_RUN


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

--

Legend:

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

    v5 v6  
    22Runs a form.
    33
    4 {{{
     4{{{#!c++
    55int FORM_RUN(formName name);
    66}}}
     
    1717
    1818FORM_RUN is a macro to simplify the call to the specified form to start processing input. The preprocessor will convert the code to call to the specified form's Run() function.
    19 {{{
     19{{{#!c++
    2020#define FORM_RUN(f)     form##f.Run()
    2121}}}
     
    2323== Examples ==
    2424
    25 {{{
     25{{{#!c++
    2626void IDScreen(void)
    2727{