totp_scene_authenticate.h 659 B

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