totp_scene_authenticate.h 613 B

12345678910111213141516
  1. #pragma once
  2. #include <gui/gui.h>
  3. #include <furi.h>
  4. #include <furi_hal.h>
  5. #include "../../types/plugin_state.h"
  6. #include "../../types/plugin_event.h"
  7. void totp_scene_authenticate_init(PluginState* plugin_state);
  8. void totp_scene_authenticate_activate(PluginState* plugin_state);
  9. void totp_scene_authenticate_render(Canvas* const canvas, PluginState* plugin_state);
  10. bool totp_scene_authenticate_handle_event(
  11. const PluginEvent* const event,
  12. PluginState* plugin_state);
  13. void totp_scene_authenticate_deactivate(PluginState* plugin_state);
  14. void totp_scene_authenticate_free(const PluginState* plugin_state);