totp_scenes_enum.h 195 B

123456789
  1. #ifndef _TOTP_SCENES_ENUM_H_
  2. #define _TOTP_SCENES_ENUM_H_
  3. typedef enum {
  4. TotpSceneAuthentication,
  5. TotpSceneGenerateToken,
  6. TotpSceneAddNewToken,
  7. TotpSceneTokenMenu
  8. } Scene;
  9. #endif