action_i.h 658 B

12345678910111213
  1. #pragma once
  2. #include <furi.h>
  3. #include <furi_hal.h>
  4. #define ACTION_SET_ERROR(_msg_fmt, ...) furi_string_printf(error, _msg_fmt, ##__VA_ARGS__)
  5. void action_subghz_tx(void* context, FuriString* action_path, FuriString* error);
  6. void action_rfid_tx(void* context, const FuriString* action_path, FuriString* error);
  7. void action_ir_tx(void* context, const FuriString* action_path, FuriString* error);
  8. void action_nfc_tx(void* context, const FuriString* action_path, FuriString* error);
  9. void action_ibutton_tx(void* context, const FuriString* action_path, FuriString* error);
  10. void action_qpl_tx(void* context, const FuriString* action_path, FuriString* error);