- Timestamp:
- 2009-01-07T01:02:53Z (16 years ago)
- Branches:
- master
- Children:
- 078b0b9
- Parents:
- 8c09bb3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r8c09bb3 r359f4d9 38 38 */ 39 39 40 typedefenum {40 enum { 41 41 SKYPE_CALL_RINGING = 1, 42 42 SKYPE_CALL_MISSED, … … 46 46 } skype_call_status; 47 47 48 typedefenum {48 enum { 49 49 SKYPE_FILETRANSFER_NEW = 1, 50 50 SKYPE_FILETRANSFER_FAILED … … 76 76 * handle. So we store the state here and then we can send a 77 77 * notification about the handle is in a given status. */ 78 skype_call_statuscall_status;78 int call_status; 79 79 char *call_id; 80 80 char *call_duration; … … 82 82 int call_out; 83 83 /* Same for file transfers. */ 84 skype_filetransfer_statusfiletransfer_status;84 int filetransfer_status; 85 85 /* Using /j #nick we want to have a groupchat with two people. Usually 86 86 * not (default). */
Note: See TracChangeset
for help on using the changeset viewer.