Changeset 813:c66d90f09c3e in mediastreamer2


Ignore:
Timestamp:
Oct 20, 2009 10:34:02 PM (4 years ago)
Author:
jehan monnier <jehan.monnier@…>
Branch:
default
Children:
814:85e451c5873c, 815:347e849d1dfb
Message:

start mingw32ce port

Location:
linphone
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • linphone/oRTP/configure.ac

    r649 r813  
    9999                PTHREAD_LDFLAGS="-pthread" 
    100100                ;; 
     101        *mingw32ce) 
     102                CFLAGS="$CFLAGS -D_WIN32_WCE";; 
    101103        *mingw*) 
    102104                CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0501 -DORTP_STATIC" 
  • linphone/oRTP/src/port.c

    r730 r813  
    226226    params->func=func; 
    227227    params->arg=data; 
    228         *th=(HANDLE)_beginthreadex( NULL, 0, thread_starter, params, 0, NULL); 
     228        *th=(HANDLE)_beginthreadex( NULL, 0, (LPTHREAD_START_ROUTINE)thread_starter, params, 0, NULL); 
    229229        return 0; 
    230230} 
Note: See TracChangeset for help on using the changeset viewer.