2022-10-17 19:40:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
DTMFDolphinEventVolumeUp = 0,
|
|
|
|
DTMFDolphinEventVolumeDown,
|
|
|
|
DTMFDolphinDialerOkCB,
|
|
|
|
DTMFDolphinEventStartDialer,
|
|
|
|
DTMFDolphinEventStartBluebox,
|
|
|
|
DTMFDolphinEventStartRedboxUS,
|
|
|
|
DTMFDolphinEventStartRedboxUK,
|
2022-11-17 19:43:04 +00:00
|
|
|
DTMFDolphinEventStartRedboxCA,
|
2022-10-17 19:40:14 +00:00
|
|
|
DTMFDolphinEventStartMisc,
|
|
|
|
DTMFDolphinEventPlayTones,
|
|
|
|
DTMFDolphinEventStopTones,
|
|
|
|
DTMFDolphinEventDMAHalfTransfer,
|
|
|
|
DTMFDolphinEventDMAFullTransfer,
|
|
|
|
} DTMFDolphinEvent;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DTMFDolphinEvent type;
|
|
|
|
} DTMFDolphinCustomEvent;
|