Changes between Version 18 and Version 19 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT
- Timestamp:
- 03/12/25 08:29:17 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/FORM_INIT
v18 v19 2 2 Initializes a display form. 3 3 4 {{{ 4 {{{#!c++ 5 5 void FORM_INIT(formName name, EVENT_FNC eventShow, EVENT_FNC eventProcess, EVENT_FNC eventHide, EVENT_FNC eventDone, int nFlag); 6 6 }}} … … 31 31 32 32 FORM_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++ 34 34 #define FORM_INIT(f, show, process, hide, done, flg) CForm form##f((show), (process), (hide), (done), (flg)) 35 35 }}} … … 37 37 == Examples == 38 38 39 {{{ 39 {{{#!c++ 40 40 void IDScreen(void) 41 41 {