Ignore:
Timestamp:
Jan 24, 2008 10:23:43 AM (16 years ago)
Author:
bennylp
Message:

Ticket #61: added Windows Mobile/WinCE eVC project for SRTP and libsrtp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/build/srtp/srtp_config.h

    r1730 r1736  
    138138#endif 
    139139 
     140/* clock()  */ 
     141#if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0 
     142    /* clock() causes unresolved symbol on linking */ 
     143#   define _CLOCK_T_DEFINED 
     144#   define CLOCKS_PER_SEC   1000 
     145#   define clock_t          unsigned 
     146 
     147    #include <windows.h> 
     148    static clock_t clock(void) 
     149    { 
     150        return GetTickCount(); 
     151    } 
     152#endif 
     153 
    140154 
    141155/* Path to random device */ 
Note: See TracChangeset for help on using the changeset viewer.