audio-settings.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef __OFONO_AUDIO_SETTINGS_H
  22. #define __OFONO_AUDIO_SETTINGS_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #include <ofono/types.h>
  27. struct ofono_audio_settings;
  28. struct ofono_audio_settings_driver {
  29. const char *name;
  30. int (*probe)(struct ofono_audio_settings *as,
  31. unsigned int vendor, void *data);
  32. void (*remove)(struct ofono_audio_settings *as);
  33. };
  34. void ofono_audio_settings_active_notify(struct ofono_audio_settings *as,
  35. ofono_bool_t active);
  36. void ofono_audio_settings_mode_notify(struct ofono_audio_settings *as,
  37. const char *mode);
  38. int ofono_audio_settings_driver_register(
  39. const struct ofono_audio_settings_driver *d);
  40. void ofono_audio_settings_driver_unregister(
  41. const struct ofono_audio_settings_driver *d);
  42. struct ofono_audio_settings *ofono_audio_settings_create(
  43. struct ofono_modem *modem,
  44. unsigned int vendor,
  45. const char *driver, void *data);
  46. void ofono_audio_settings_register(struct ofono_audio_settings *as);
  47. void ofono_audio_settings_remove(struct ofono_audio_settings *as);
  48. void ofono_audio_settings_set_data(struct ofono_audio_settings *as, void *data);
  49. void *ofono_audio_settings_get_data(struct ofono_audio_settings *as);
  50. struct ofono_modem *ofono_audio_settings_get_modem(
  51. struct ofono_audio_settings *as);
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55. #endif /* __OFONO_AUDIO_SETTINGS_H */