µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
|
void(* uel_module_hook_t)(struct uel_module *)
Defines a module hook to be called during the module lifecycle.
Definition: module.h:12
void uel_module_config(uel_module_t *module)
Calls the configuration hook of a module.
uel_module_hook_t launch
Definition: module.h:37
uel_module_hook_t config
Definition: module.h:32
void uel_module_launch(uel_module_t *module)
Calls the launch hook of a module.
A module is an isolated unit of behaviour with lifecycle hooks.
Definition: module.h:27
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.
Top-level container for µEvLoop'd application.
Definition: application.h:39
struct uel_application * app
Keeps a reference to the application onto which the module is loaded.
Definition: module.h:39