ctm.h 2.0 KB

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