Changeset 730:5e4ef39074a2 in mediastreamer2


Ignore:
Timestamp:
Oct 14, 2009 2:45:13 PM (4 years ago)
Author:
aymeric <aymeric@…>
Branch:
default
Message:

fix for windows mobile

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@718 3f6dc0c8-ddfe-455d-9043-3cd528dc4637

Location:
linphone/oRTP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • linphone/oRTP/include/ortp/port.h

    r482 r730  
    232232 
    233233/* portable named pipes */ 
     234#if !defined(_WIN32_WCE) 
    234235#ifdef WIN32 
    235236typedef HANDLE ortp_pipe_t; 
     
    255256int ortp_pipe_read(ortp_pipe_t p, uint8_t *buf, int len); 
    256257int ortp_pipe_write(ortp_pipe_t p, const uint8_t *buf, int len); 
    257  
     258#endif 
    258259 
    259260#ifdef __cplusplus 
  • linphone/oRTP/src/port.c

    r483 r730  
    406406} 
    407407 
    408 #else 
     408#elif defined(WIN32) && !defined(_WIN32_WCE) 
    409409 
    410410static char *make_pipe_name(const char *name){ 
Note: See TracChangeset for help on using the changeset viewer.