Ignore:
Timestamp:
Nov 22, 2017 6:59:47 AM (7 years ago)
Author:
riza
Message:

Close #2067: Fix linker error when building as dll on VS2015.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c

    r5635 r5701  
    38733873 
    38743874        /* Disconnect the call */ 
    3875         status = pjsip_dlg_create_request(forked_dlg, &pjsip_bye_method, 
     3875        status = pjsip_dlg_create_request(forked_dlg, pjsip_get_bye_method(), 
    38763876                                          -1, &bye); 
    38773877        if (status == PJ_SUCCESS) { 
     
    44994499            pjsip_tx_data *tdata; 
    45004500 
    4501             status = pjsip_evsub_initiate(sub, &pjsip_subscribe_method, 
     4501            status = pjsip_evsub_initiate(sub, pjsip_get_subscribe_method(), 
    45024502                                          0, &tdata); 
    45034503            if (status == PJ_SUCCESS) 
     
    48924892        } 
    48934893    } else if (tsx->role == PJSIP_ROLE_UAC && 
    4894                pjsip_method_cmp(&tsx->method, &pjsip_invite_method)==0 && 
     4894               pjsip_method_cmp(&tsx->method, pjsip_get_invite_method())==0 && 
    48954895               tsx->state >= PJSIP_TSX_STATE_COMPLETED && 
    48964896               e->body.tsx_state.prev_state < PJSIP_TSX_STATE_COMPLETED && 
Note: See TracChangeset for help on using the changeset viewer.