- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjsip/include/pjsip-simple/evsub.h
r4704 r5513 247 247 * @param event_name Event package identification. 248 248 * @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. 250 251 * @param accept Array of Accept value. 251 252 * … … 491 492 492 493 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 */ 501 PJ_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 */ 511 PJ_DEF(pj_status_t) pjsip_evsub_dec_ref(pjsip_evsub *sub); 512 513 493 514 494 515 PJ_END_DECL
Note: See TracChangeset
for help on using the changeset viewer.