Changeset 359f4d9 for skype


Ignore:
Timestamp:
2009-01-07T01:02:53Z (15 years ago)
Author:
Miklos Vajna <vmiklos@…>
Branches:
master
Children:
078b0b9
Parents:
8c09bb3
Message:

do not add new typedefs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/skype.c

    r8c09bb3 r359f4d9  
    3838 */
    3939
    40 typedef enum {
     40enum {
    4141        SKYPE_CALL_RINGING = 1,
    4242        SKYPE_CALL_MISSED,
     
    4646} skype_call_status;
    4747
    48 typedef enum {
     48enum {
    4949        SKYPE_FILETRANSFER_NEW = 1,
    5050        SKYPE_FILETRANSFER_FAILED
     
    7676         * handle. So we store the state here and then we can send a
    7777         * notification about the handle is in a given status. */
    78         skype_call_status call_status;
     78        int call_status;
    7979        char *call_id;
    8080        char *call_duration;
     
    8282        int call_out;
    8383        /* Same for file transfers. */
    84         skype_filetransfer_status filetransfer_status;
     84        int filetransfer_status;
    8585        /* Using /j #nick we want to have a groupchat with two people. Usually
    8686         * not (default). */
Note: See TracChangeset for help on using the changeset viewer.