Move struct ussd_data definition out of the header.

No fuctional change.
This commit is contained in:
Andrzej Zaborowski 2009-06-18 06:04:13 +02:00 committed by Denis Kenzior
parent 713cbac79a
commit 9156607bc9
2 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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,