volumekeeper.h 273 B

1234567
  1. #pragma once
  2. // kept value: 0-100
  3. void *volume_keeper_create(const char *dev_key_name, int in_dev, int kept_value);
  4. void volume_keeper_destroy(void *keeper);
  5. void volume_keeper_change(void *inst,int change_value);
  6. bool get_audiodevice_volumn(void *inst,int*change_value);