summaryrefslogtreecommitdiffstats
path: root/include/ussd.h
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-08-17 13:45:55 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-08-17 13:45:55 -0500
commit229bb3a4ed66b4188cc27814846868c12970a2f0 (patch)
treef5c51b1dc272472062ae85396348084c26f53415 /include/ussd.h
parent5fdc6fd3950bb0f8ec9addec9663faca7799d7f6 (diff)
downloadofono-229bb3a4ed66b4188cc27814846868c12970a2f0.tar.bz2
Evolve the USSD API
Diffstat (limited to 'include/ussd.h')
-rw-r--r--include/ussd.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/include/ussd.h b/include/ussd.h
new file mode 100644
index 00000000..dd961b8a
--- /dev/null
+++ b/include/ussd.h
@@ -0,0 +1,63 @@
+/*
+ *
+ * oFono - Open Source Telephony
+ *
+ * Copyright (C) 2008-2009 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __OFONO_USSD_H
+#define __OFONO_USSD_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <ofono/types.h>
+
+struct ofono_ussd;
+
+typedef void (*ofono_ussd_cb_t)(const struct ofono_error *error, void *data);
+
+struct ofono_ussd_driver {
+ const char *name;
+ int (*probe)(struct ofono_ussd *ussd);
+ int (*remove)(struct ofono_ussd *ussd);
+ void (*request)(struct ofono_ussd *ussd, const char *str,
+ ofono_ussd_cb_t, void *data);
+ void (*cancel)(struct ofono_ussd *ussd,
+ ofono_ussd_cb_t cb, void *data);
+};
+
+void ofono_ussd_notify(struct ofono_ussd *ussd, int status, const char *str);
+
+int ofono_ussd_driver_register(const struct ofono_ussd_driver *d);
+void ofono_ussd_driver_unregister(const struct ofono_ussd_driver *d);
+
+struct ofono_ussd *ofono_ussd_create(struct ofono_modem *modem,
+ const char *driver, void *data);
+
+void ofono_ussd_register(struct ofono_ussd *ussd);
+void ofono_ussd_remove(struct ofono_ussd *ussd);
+
+void ofono_ussd_set_data(struct ofono_ussd *ussd, void *data);
+void *ofono_ussd_get_data(struct ofono_ussd *ussd);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __OFONO_USSD_H */