123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef __VOLUME_MANGER_H__
- #define __VOLUME_MANGER_H__
- typedef enum
- {
- SYNC_TYPE_TWS,
- SYNC_TYPE_AVRCP,
- SYNC_TYPE_HFP,
- SYNC_TYPE_ROLE_SWITCH,
- }sync_type_e;
- int system_volume_get(int stream_type);
- int system_volume_set(int stream_type, int volume, bool display);
- int system_volume_down(int stream_type, int decrement);
- int system_volume_up(int stream_type, int increment);
- void system_volume_sync_remote_to_device(uint32_t stream_type, uint32_t volume);
- #endif
|