/**
* The main program data as a single structure.
*
- * cache: The program cache.
- * call: The program callbacks.
* program: The main program data.
+ *
+ * cache: The program cache.
+ * call: The program call backs.
* setting: The settings data.
*/
#ifndef _di_kt_remove_main_t_
struct kt_remove_main_t_ {
+ fll_program_data_t program;
+
kt_remove_cache_t cache;
kt_remove_callback_t call;
- fll_program_data_t program;
kt_remove_setting_t setting;
};
#define kt_remove_main_t_initialize { \
+ .program = fll_program_data_t_initialize, \
.cache = kt_remove_cache_t_initialize, \
.call = kt_remove_callback_t_initialize, \
- .program = fll_program_data_t_initialize, \
.setting = kt_remove_setting_t_initialize, \
}
#endif // _di_kt_remove_main_t_
/**
* The main program data as a single structure.
*
- * cache: The program cache.
- * call: The program callbacks.
- * program: The main program data.
- * setting: The settings data.
- * thread: The program thread data.
+ * program: The main program data.
+ *
+ * cache: The program cache.
+ * call: The program call backs.
+ * setting: The settings data.
+ * thread: The program thread data.
*/
#ifndef _di_kt_tacocat_main_t_
struct kt_tacocat_main_t_ {
+ fll_program_data_t program;
+
kt_tacocat_cache_t cache;
kt_tacocat_call_t call;
- fll_program_data_t program;
kt_tacocat_setting_t setting;
kt_tacocat_thread_t thread;
};
#define kt_tacocat_main_t_initialize { \
- .cache = kt_tacocat_cache_t_initialize, \
- .call = kt_tacocat_call_t_initialize, \
.program = fll_program_data_t_initialize, \
+ .cache = kt_tacocat_cache_t_initialize, \
+ .call = kt_tacocat_call_t_initialize, \
.setting = kt_tacocat_setting_t_initialize, \
.thread = kt_tacocat_thread_t_initialize, \
}