mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 20:49:49 +04:00
25 lines
505 B
C
25 lines
505 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <furi.h>
|
||
|
|
#include <m-array.h>
|
||
|
|
#include "cli_shell_i.h"
|
||
|
|
#include "cli_shell_line.h"
|
||
|
|
#include "../cli.h"
|
||
|
|
#include "../cli_i.h"
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
typedef struct CliShellCompletions CliShellCompletions;
|
||
|
|
|
||
|
|
CliShellCompletions* cli_shell_completions_alloc(Cli* cli, CliShell* shell, CliShellLine* line);
|
||
|
|
|
||
|
|
void cli_shell_completions_free(CliShellCompletions* completions);
|
||
|
|
|
||
|
|
extern CliShellKeyComboSet cli_shell_completions_key_combo_set;
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|