totp_scene_authenticate.h 579 B

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