common.h 303 B

1234567891011
  1. #pragma once
  2. #include <stdint.h>
  3. #include "../types/token_info.h"
  4. typedef void (*TOTP_AUTOMATION_PRESS_KEY)(uint8_t key);
  5. void totp_type_code_worker_execute_automation(
  6. TOTP_AUTOMATION_PRESS_KEY key_press_fn,
  7. const char* string,
  8. uint8_t string_length,
  9. TokenAutomationFeature features);