Changeset 1154:e89ef1c2f48e in mediastreamer2


Ignore:
Timestamp:
Sep 20, 2010 9:25:03 PM (3 years ago)
Author:
Simon Morlat <simon.morlat@…>
Branch:
default
Message:

move definition of ms_time to the right place

Location:
include/mediastreamer2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/mediastreamer2/mediastream.h

    r1140 r1154  
    2929#include "ortp/ortp.h" 
    3030#include "ortp/event.h" 
    31 #include <time.h> 
    32  
    33 #if defined(_WIN32_WCE) 
    34 time_t ms_time (time_t *t); 
    35 #else 
    36 #define ms_time time 
    37 #endif 
     31 
     32 
     33 
    3834 
    3935typedef enum EchoLimiterType{ 
  • include/mediastreamer2/mscommon.h

    r982 r1154  
    2121 
    2222#include <ortp/ortp.h> 
     23#include <time.h> 
    2324 
    2425#define ms_malloc       ortp_malloc 
     
    4344#define ms_cond_broadcast       ortp_cond_broadcast 
    4445#define ms_cond_destroy         ortp_cond_destroy 
     46 
     47#if defined(_WIN32_WCE) 
     48time_t ms_time (time_t *t); 
     49#else 
     50#define ms_time time 
     51#endif 
    4552 
    4653#ifdef WIN32 
Note: See TracChangeset for help on using the changeset viewer.