Ignore:
Timestamp:
Oct 24, 2006 5:13:30 PM (18 years ago)
Author:
bennylp
Message:

Bulk of PJLIB implementations on Symbian: exception framework, errno, OS core, Unicode, pool backend, log (to console), socket, address resolution, select, etc. IOQueue still doesn't work.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/symbian/pjlib/src/pjlib-test/test.c

    r687 r788  
    1818 */ 
    1919#include "test.h" 
    20 #include <pjlib.h> 
     20#include <pj/errno.h> 
     21#include <pj/ioqueue.h> 
     22#include <pj/log.h> 
     23#include <pj/os.h> 
     24#include <pj/pool.h> 
     25#include <pj/sock.h> 
     26 
    2127#ifdef _MSC_VER 
    2228#  pragma warning(disable:4127) 
     
    195201int test_main(void) 
    196202{ 
    197     PJ_USE_EXCEPTION; 
    198  
    199     PJ_TRY { 
    200         return test_inner(); 
    201     } 
    202     PJ_CATCH_ANY { 
    203         int id = PJ_GET_EXCEPTION(); 
    204         PJ_LOG(3,("test", "FATAL: unhandled exception id %d (%s)",  
    205                   id, pj_exception_id_name(id))); 
    206     } 
    207     PJ_END; 
    208  
    209     return -1; 
     203    return test_inner(); 
    210204} 
Note: See TracChangeset for help on using the changeset viewer.