diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2009-01-07 02:02:53 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2009-01-07 02:02:53 +0100 |
commit | 359f4d9ae19a45d0d7d34bc2ba27c41e0ab6730f (patch) | |
tree | 712feb2b07efda6d86287d5d39ee0c829c27d10a | |
parent | 8c09bb33fe1bbbfeb820f72fc69026a48f061831 (diff) |
do not add new typedefs
-rw-r--r-- | skype/skype.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/skype/skype.c b/skype/skype.c index 9a8c0e12..07529e5c 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -37,7 +37,7 @@ * Enumerations */ -typedef enum { +enum { SKYPE_CALL_RINGING = 1, SKYPE_CALL_MISSED, SKYPE_CALL_CANCELLED, @@ -45,7 +45,7 @@ typedef enum { SKYPE_CALL_REFUSED } skype_call_status; -typedef enum { +enum { SKYPE_FILETRANSFER_NEW = 1, SKYPE_FILETRANSFER_FAILED } skype_filetransfer_status; @@ -75,13 +75,13 @@ struct skype_data { /* This is necessary because we send a notification when we get the * handle. So we store the state here and then we can send a * notification about the handle is in a given status. */ - skype_call_status call_status; + int call_status; char *call_id; char *call_duration; /* If the call is outgoing or not */ int call_out; /* Same for file transfers. */ - skype_filetransfer_status filetransfer_status; + int filetransfer_status; /* Using /j #nick we want to have a groupchat with two people. Usually * not (default). */ char *groupchat_with; |