dtmf_dolphin_bluebox.h 548 B

123456789101112131415
  1. #pragma once
  2. #include <gui/view.h>
  3. #include "../dtmf_dolphin_tone.h"
  4. typedef struct DTMFDolphinBluebox DTMFDolphinBluebox;
  5. typedef void (*DTMFDolphinBlueboxOkCallback)(InputType type, void* context);
  6. DTMFDolphinBluebox* dtmf_dolphin_bluebox_alloc();
  7. void dtmf_dolphin_bluebox_free(DTMFDolphinBluebox* dtmf_dolphin_bluebox);
  8. View* dtmf_dolphin_bluebox_get_view(DTMFDolphinBluebox* dtmf_dolphin_bluebox);
  9. void dtmf_dolphin_bluebox_set_ok_callback(DTMFDolphinBluebox* dtmf_dolphin_bluebox, DTMFDolphinBlueboxOkCallback callback, void* context);