Changeset 4154 for pjproject/trunk/pjsip/include/pjsip/sip_endpoint.h
- Timestamp:
- Jun 5, 2012 10:41:17 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip/sip_endpoint.h
r3999 r4154 151 151 * @return PJ_OK (zero) if successfull. 152 152 */ 153 #if PJ_TIMER_DEBUG 154 #define pjsip_endpt_schedule_timer(ept,ent,d) \ 155 pjsip_endpt_schedule_timer_dbg(ept, ent, d, \ 156 __FILE__, __LINE__) 157 158 PJ_DECL(pj_status_t) pjsip_endpt_schedule_timer_dbg(pjsip_endpoint *endpt, 159 pj_timer_entry *entry, 160 const pj_time_val *delay, 161 const char *src_file, 162 int src_line); 163 #else 153 164 PJ_DECL(pj_status_t) pjsip_endpt_schedule_timer( pjsip_endpoint *endpt, 154 165 pj_timer_entry *entry, 155 166 const pj_time_val *delay ); 167 #endif 156 168 157 169 /**
Note: See TracChangeset
for help on using the changeset viewer.