Commit e226638e authored by Federico Vaga's avatar Federico Vaga

AMEND quit method

parent 93e27ee5
......@@ -41,7 +41,7 @@ extern xQueueHandle appQueue;
/**
* @brief An application entry, used by the menu application.
*/
typedef struct {
typedef struct application {
///> Application name
const char* name;
......@@ -50,7 +50,7 @@ typedef struct {
* @params Optional parameters, dependendent on application.
*/
void (*main)(void* params);
void (*quit)(application *app);
void (*quit)(struct application *app);
} application;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment