- Timestamp:
- 2008-02-29T00:43:02Z (17 years ago)
- Branches:
- master
- Children:
- 48181f0
- Parents:
- 239b036
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
skype/skype.c
r239b036 racd9478 44 44 SKYPE_CALL_UNPLACED, 45 45 SKYPE_CALL_CANCELLED, 46 SKYPE_CALL_FINISHED, 46 47 /* This means we are ringing somebody, not somebody rings us. */ 47 48 SKYPE_CALL_RINGING_OUT … … 584 585 sd->call_status = SKYPE_CALL_CANCELLED; 585 586 } 587 else if(!strcmp(info, "STATUS FINISHED")) 588 { 589 g_snprintf(buf, 1024, "GET CALL %s PARTNER_HANDLE\n", id); 590 skype_write( ic, buf, strlen( buf ) ); 591 sd->call_status = SKYPE_CALL_FINISHED; 592 } 586 593 else if(!strcmp(info, "STATUS UNPLACED")) 587 594 { … … 609 616 case SKYPE_CALL_CANCELLED: 610 617 imcb_log(ic, "You cancelled the call to the user %s.", info); 618 break; 619 case SKYPE_CALL_FINISHED: 620 imcb_log(ic, "You finished the call to the user %s.", info); 611 621 break; 612 622 default:
Note: See TracChangeset
for help on using the changeset viewer.