cdma-sms.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2010-2011 Nokia Corporation and/or its subsidiary(-ies).
  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_CDMA_SMS_H
  22. #define __OFONO_CDMA_SMS_H
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #include <ofono/types.h>
  27. struct ofono_cdma_sms;
  28. typedef void (*ofono_cdma_sms_submit_cb_t)(const struct ofono_error *error,
  29. void *data);
  30. struct ofono_cdma_sms_driver {
  31. const char *name;
  32. int (*probe)(struct ofono_cdma_sms *cdma_sms, unsigned int vendor,
  33. void *data);
  34. void (*remove)(struct ofono_cdma_sms *cdma_sms);
  35. void (*submit)(struct ofono_cdma_sms *cdma_sms,
  36. const unsigned char *tpdu,
  37. int tpdu_len, ofono_cdma_sms_submit_cb_t cb,
  38. void *data);
  39. };
  40. void ofono_cdma_sms_deliver_notify(struct ofono_cdma_sms *cdma_sms,
  41. const unsigned char *pdu, int tpdu_len);
  42. int ofono_cdma_sms_driver_register(const struct ofono_cdma_sms_driver *d);
  43. void ofono_cdma_sms_driver_unregister(const struct ofono_cdma_sms_driver *d);
  44. struct ofono_cdma_sms *ofono_cdma_sms_create(struct ofono_modem *modem,
  45. unsigned int vendor,
  46. const char *driver,
  47. void *data);
  48. void ofono_cdma_sms_register(struct ofono_cdma_sms *cdma_sms);
  49. void ofono_cdma_sms_remove(struct ofono_cdma_sms *cdma_sms);
  50. void ofono_cdma_sms_set_data(struct ofono_cdma_sms *cdma_sms, void *data);
  51. void *ofono_cdma_sms_get_data(struct ofono_cdma_sms *cdma_sms);
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55. #endif /* __OFONO_CDMA_SMS_H */