unleashed-firmware/applications/external/totp/cli/cli.h
2023-03-15 01:25:18 +03:00

13 lines
No EOL
352 B
C

#pragma once
#include <cli/cli.h>
#include "../types/plugin_state.h"
typedef struct {
PluginState* plugin_state;
FuriMessageQueue* event_queue;
} TotpCliContext;
TotpCliContext*
totp_cli_register_command_handler(PluginState* plugin_state, FuriMessageQueue* event_queue);
void totp_cli_unregister_command_handler(TotpCliContext* context);