Ignore:
Timestamp:
Nov 9, 2009 4:09:13 AM (15 years ago)
Author:
bennylp
Message:

Updated ticket #981: pj_perror() and PJ_PERROR() API:

  • added PJ_PERROR() macro to allow compile time omitting
  • changed pj_perror() API to allow formatting of the title using printf like format
  • added a simple test in pjlib-test
  • updated Doxygen documentation
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pjlib-test/errno.c

    r2394 r2992  
    159159              CUT, errbuf)); 
    160160 
     161    /* Perror */ 
     162    pj_perror(3, THIS_FILE, PJ_SUCCESS, "...testing %s", "pj_perror"); 
     163    PJ_PERROR(3,(THIS_FILE, PJ_SUCCESS, "...testing %s", "PJ_PERROR")); 
     164 
    161165    return 0; 
    162166} 
Note: See TracChangeset for help on using the changeset viewer.