cli.h 352 B

12345678910111213
  1. #pragma once
  2. #include <cli/cli.h>
  3. #include "../types/plugin_state.h"
  4. typedef struct {
  5. PluginState* plugin_state;
  6. FuriMessageQueue* event_queue;
  7. } TotpCliContext;
  8. TotpCliContext*
  9. totp_cli_register_command_handler(PluginState* plugin_state, FuriMessageQueue* event_queue);
  10. void totp_cli_unregister_command_handler(TotpCliContext* context);