volumekeeper.h 375 B

12345678
  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 volume_change(const char *dev_key_name, int in_dev,float change_value);
  7. bool get_audiodevice_volumn(const char *dev_key_name, int in_dev,float*fCurValue);