Ignore:
Timestamp:
Aug 16, 2007 10:11:44 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: continuing work to port the Symbian libraries to .DSO format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_errno.h

    r1382 r1417  
    488488 
    489489 
     490/** 
     491 * Get error message for the specified error code. Note that this 
     492 * function is only able to decode PJSIP specific error code. 
     493 * Application should use pj_strerror(), which should be able to 
     494 * decode all error codes belonging to all subsystems (e.g. pjlib, 
     495 * pjmedia, pjsip, etc). 
     496 * 
     497 * @param status    The error code. 
     498 * @param buffer    The buffer where to put the error message. 
     499 * @param bufsize   Size of the buffer. 
     500 * 
     501 * @return          The error message as NULL terminated string, 
     502 *                  wrapped with pj_str_t. 
     503 */ 
     504PJ_DECL(pj_str_t) pjsip_strerror(pj_status_t status,  
     505                                 char *buffer, pj_size_t bufsize); 
    490506 
    491507 
     
    498514 
    499515#endif  /* __PJSIP_SIP_ERRNO_H__ */ 
     516 
Note: See TracChangeset for help on using the changeset viewer.