Changes between Version 5 and Version 6 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_RUN
- Timestamp:
- 03/12/25 08:28:31 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_RUN
v5 v6 2 2 Runs a form. 3 3 4 {{{ 4 {{{#!c++ 5 5 int FORM_RUN(formName name); 6 6 }}} … … 17 17 18 18 FORM_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++ 20 20 #define FORM_RUN(f) form##f.Run() 21 21 }}} … … 23 23 == Examples == 24 24 25 {{{ 25 {{{#!c++ 26 26 void IDScreen(void) 27 27 {