Ignore:
Timestamp:
Jul 20, 2007 8:08:30 AM (17 years ago)
Author:
bennylp
Message:

Ticket #354: build PJLIB as dynamic libraries (.DSO) in Symbian

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/os_time_common.c

    r974 r1405  
    1919#include <pj/os.h> 
    2020#include <pj/compat/time.h> 
     21#include <pj/errno.h> 
     22 
    2123 
    2224/////////////////////////////////////////////////////////////////////////////// 
     
    6668 * Convert local time to GMT. 
    6769 */ 
    68 PJ_DEF(pj_status_t) pj_time_local_to_gmt(pj_time_val *tv); 
     70PJ_DEF(pj_status_t) pj_time_local_to_gmt(pj_time_val *tv) 
     71{ 
     72    PJ_UNUSED_ARG(tv); 
     73    return PJ_EBUG; 
     74} 
    6975 
    7076/** 
    7177 * Convert GMT to local time. 
    7278 */ 
    73 PJ_DEF(pj_status_t) pj_time_gmt_to_local(pj_time_val *tv); 
     79PJ_DEF(pj_status_t) pj_time_gmt_to_local(pj_time_val *tv) 
     80{ 
     81    PJ_UNUSED_ARG(tv); 
     82    return PJ_EBUG; 
     83} 
    7484 
    7585 
Note: See TracChangeset for help on using the changeset viewer.