totp_scene_authenticate.h 592 B

1234567891011121314
  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(PluginEvent* const event, PluginState* plugin_state);
  11. void totp_scene_authenticate_deactivate(PluginState* plugin_state);
  12. void totp_scene_authenticate_free(PluginState* plugin_state);