diff options
author | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2009-06-18 06:04:13 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-06-18 16:57:57 -0500 |
commit | 9156607bc9a84711419fe70e64f199316e50e71b (patch) | |
tree | 287acab4b873408901059e8569bc35be65fc8364 | |
parent | 713cbac79abc2fd3501c8217061de21024843f70 (diff) | |
download | ofono-9156607bc9a84711419fe70e64f199316e50e71b.tar.bz2 |
Move struct ussd_data definition out of the header.
No fuctional change.
-rw-r--r-- | src/ussd.c | 7 | ||||
-rw-r--r-- | src/ussd.h | 7 |
2 files changed, 7 insertions, 7 deletions
@@ -49,6 +49,13 @@ enum ussd_state { USSD_STATE_USER_ACTION = 2 }; +struct ussd_data { + struct ofono_ussd_ops *ops; + int state; + DBusMessage *pending; + int flags; +}; + static struct ussd_data *ussd_create() { struct ussd_data *r; @@ -19,13 +19,6 @@ * */ -struct ussd_data { - struct ofono_ussd_ops *ops; - int state; - DBusMessage *pending; - int flags; -}; - typedef gboolean (*ss_control_cb_t)(struct ofono_modem *modem, enum ss_control_type type, const char *sc, |