µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
module.h
Go to the documentation of this file.
1 
4 #ifndef UEL_MODULE_H
5 #define UEL_MODULE_H
6 
7 struct uel_application;
8 struct uel_module;
9 
12 typedef void (*uel_module_hook_t)(struct uel_module *);
13 
26 typedef struct uel_module uel_module_t;
27 struct uel_module {
40 };
41 
49 void uel_module_init(
50  uel_module_t *module,
51  uel_module_hook_t config,
52  uel_module_hook_t launch,
53  struct uel_application *app
54 );
55 
60 void uel_module_config(uel_module_t *module);
61 
66 void uel_module_launch(uel_module_t *module);
67 
68 #endif /* end of include guard: UEL_MODULE_H */
uel_module_hook_t
void(* uel_module_hook_t)(struct uel_module *)
Defines a module hook to be called during the module lifecycle.
Definition: module.h:12
uel_module_config
void uel_module_config(uel_module_t *module)
Calls the configuration hook of a module.
uel_module::launch
uel_module_hook_t launch
Definition: module.h:37
uel_module::config
uel_module_hook_t config
Definition: module.h:32
uel_module_launch
void uel_module_launch(uel_module_t *module)
Calls the launch hook of a module.
uel_module
A module is an isolated unit of behaviour with lifecycle hooks.
Definition: module.h:27
uel_module_init
void uel_module_init(uel_module_t *module, uel_module_hook_t config, uel_module_hook_t launch, struct uel_application *app)
Initialised a module.
uel_application
Top-level container for µEvLoop'd application.
Definition: application.h:39
uel_module::app
struct uel_application * app
Keeps a reference to the application onto which the module is loaded.
Definition: module.h:39