mirror of
https://github.com/tio/tio.git
synced 2026-05-01 23:07:58 +02:00
Add missing options to show configuration
This commit is contained in:
parent
51bfa68bdd
commit
b05f38abd0
6 changed files with 64 additions and 11 deletions
|
|
@ -21,14 +21,15 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
enum alert_t
|
||||
typedef enum
|
||||
{
|
||||
ALERT_NONE,
|
||||
ALERT_BELL,
|
||||
ALERT_BLINK,
|
||||
ALERT_END,
|
||||
};
|
||||
} alert_t;
|
||||
|
||||
enum alert_t alert_option_parse(const char *arg);
|
||||
alert_t alert_option_parse(const char *arg);
|
||||
void alert_connect(void);
|
||||
void alert_disconnect(void);
|
||||
const char *alert_state_to_string(alert_t state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue