Ignore:
Timestamp:
May 12, 2007 3:03:23 PM (17 years ago)
Author:
bennylp
Message:

Symbian fixes to compile on GCCE (nested callbacks etc)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/sock_symbian.cpp

    r1248 r1269  
    272272    temp_addr.Output(str16); 
    273273  
    274     return pj_unicode_to_ansi(str16.PtrZ(), str16.Length(), 
     274    return pj_unicode_to_ansi((const wchar_t*)str16.PtrZ(), str16.Length(), 
    275275                              str8, sizeof(str8)); 
    276276} 
     
    308308                       tempaddr16, sizeof(tempaddr16)); 
    309309 
    310     TBuf<MAXIPLEN> ip_addr(tempaddr16); 
     310    TBuf<MAXIPLEN> ip_addr((const TText*)tempaddr16); 
    311311 
    312312    TInetAddr addr; 
     
    419419        User::WaitForRequest(reqStatus); 
    420420 
    421         hostname.ptr = pj_unicode_to_ansi(tmpName.Ptr(), tmpName.Length(), 
     421        hostname.ptr = pj_unicode_to_ansi((const wchar_t*)tmpName.Ptr(), tmpName.Length(), 
    422422                                          buf, sizeof(buf)); 
    423423        hostname.slen = tmpName.Length(); 
     
    552552     
    553553    PJ_ASSERT_RETURN(sock && addr && namelen &&  
    554                      *namelen>=sizeof(pj_sockaddr_in), PJ_EINVAL); 
     554                     *namelen>=(int)sizeof(pj_sockaddr_in), PJ_EINVAL); 
    555555 
    556556    CPjSocket *pjSock = (CPjSocket*)sock; 
     
    579579     
    580580    PJ_ASSERT_RETURN(sock && addr && namelen &&  
    581                      *namelen>=sizeof(pj_sockaddr_in), PJ_EINVAL); 
     581                     *namelen>=(int)sizeof(pj_sockaddr_in), PJ_EINVAL); 
    582582 
    583583    CPjSocket *pjSock = (CPjSocket*)sock; 
     
    729729    PJ_ASSERT_RETURN(sock && buf && len && from && fromlen, PJ_EINVAL); 
    730730    PJ_ASSERT_RETURN(*len > 0, PJ_EINVAL); 
    731     PJ_ASSERT_RETURN(*fromlen >= sizeof(pj_sockaddr_in), PJ_EINVAL); 
     731    PJ_ASSERT_RETURN(*fromlen >= (int)sizeof(pj_sockaddr_in), PJ_EINVAL); 
    732732 
    733733    CPjSocket *pjSock = (CPjSocket*)sock; 
Note: See TracChangeset for help on using the changeset viewer.