µEvLoop
A fast and lightweight event loop aimed at embedded platforms in C99.
Data Structures | Typedefs | Functions
module.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  uel_module_t
 A module is an isolated unit of behaviour with lifecycle hooks. More...
 

Typedefs

typedef void(* uel_module_hook_t) (struct uel_module *)
 Defines a module hook to be called during the module lifecycle.
 

Functions

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. More...
 
void uel_module_config (uel_module_t *module)
 Calls the configuration hook of a module. More...
 
void uel_module_launch (uel_module_t *module)
 Calls the launch hook of a module. More...
 

Detailed Description

Defines modules, isolated units of behaviour with lifecycle hooks.

Function Documentation

◆ uel_module_config()

void uel_module_config ( uel_module_t *  module)

Calls the configuration hook of a module.

Parameters
moduleThe modules to config

◆ 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.

Parameters
moduleThe module to be initialised
configA module hook to be invoked during the configuration phase
launchA module hook to be invoked during the launching phase
appThe application instante onto which this module will be loaded

◆ uel_module_launch()

void uel_module_launch ( uel_module_t *  module)

Calls the launch hook of a module.

Parameters
moduleThe modules to launch