Ignore:
Timestamp:
Dec 28, 2016 3:40:07 AM (7 years ago)
Author:
nanang
Message:

Re #1900: More merged from trunk (r5512 mistakenly contains merged changes in third-party dir only).

Location:
pjproject/branches/projects/uwp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/uwp

  • pjproject/branches/projects/uwp/pjsip/include/pjsip-simple/evsub.h

    r4704 r5513  
    247247 * @param event_name    Event package identification. 
    248248 * @param expires       Default subscription expiration time, in seconds. 
    249  * @param accept_cnt    Number of strings in Accept array. 
     249 * @param accept_cnt    Number of strings in Accept array. The value must 
     250 *                      not be greater than PJSIP_GENERIC_ARRAY_MAX_COUNT. 
    250251 * @param accept        Array of Accept value. 
    251252 * 
     
    491492 
    492493 
     494/** 
     495 * Increment the event subscription's group lock. 
     496 * 
     497 * @param sub           The server subscription instance. 
     498 * 
     499 * @return              PJ_SUCCESS on success. 
     500 */ 
     501PJ_DEF(pj_status_t) pjsip_evsub_add_ref(pjsip_evsub *sub); 
     502 
     503 
     504/** 
     505 * Decrement the event subscription's group lock. 
     506 * 
     507 * @param sub           The server subscription instance. 
     508 * 
     509 * @return              PJ_SUCCESS on success. 
     510 */ 
     511PJ_DEF(pj_status_t) pjsip_evsub_dec_ref(pjsip_evsub *sub); 
     512 
     513 
    493514 
    494515PJ_END_DECL 
Note: See TracChangeset for help on using the changeset viewer.