3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-24 15:22:34 +01:00

client: Define command refresh interfaces

This commit is contained in:
Tim Kourt 2017-04-12 13:04:50 -07:00 committed by Denis Kenzior
parent 7c3ed0c61d
commit 966a8effd1
2 changed files with 21 additions and 0 deletions

View File

@ -77,6 +77,22 @@ static void restore_input(struct saved_input *input)
l_free(input);
}
void display_refresh_timeout_set(void)
{
}
void display_refresh_reset(void)
{
}
void display_refresh_set_cmd(const char *family, const char *entity,
const struct command *cmd, char *args)
{
}
static void display_text(const char *text)
{
struct saved_input *input = save_input();

View File

@ -40,6 +40,11 @@ void display_command(const struct command_family *family, const char *cmd_name);
void display_command_line(const char *command_family,
const struct command *cmd);
void display_refresh_timeout_set(void);
void display_refresh_reset(void);
void display_refresh_set_cmd(const char *family, const char *entity,
const struct command *cmd, char *args);
void display_enable_cmd_prompt(void);
void display_disable_cmd_prompt(void);