mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2025-10-10 23:22:35 +02:00
* cli_shell: separate into toolbox * fix: cmd flags * fix formatting * cli: increase default stack depth * cli_shell: fix loader lock logic * cli: fix command flags * fix f18 * speaker_debug: fix * cli_registry: fix docs * ufbt: rename cli target back * cli: rename app and record * cli: fix and simplify help command * cli_master_shell: fix ext commands * fix formatting * cli: rename master to main * fix formatting --------- Co-authored-by: hedger <hedger@users.noreply.github.com>
26 lines
540 B
C
26 lines
540 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <m-array.h>
|
|
#include "cli_shell_i.h"
|
|
#include "cli_shell_line.h"
|
|
#include "../cli_registry.h"
|
|
#include "../cli_registry_i.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct CliShellCompletions CliShellCompletions;
|
|
|
|
CliShellCompletions*
|
|
cli_shell_completions_alloc(CliRegistry* registry, CliShell* shell, CliShellLine* line);
|
|
|
|
void cli_shell_completions_free(CliShellCompletions* completions);
|
|
|
|
extern CliShellKeyComboSet cli_shell_completions_key_combo_set;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|