Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ioqueue_common_abs.c

    r4359 r4537  
    241241          } 
    242242        } 
    243 #elif defined(PJ_WIN32) && PJ_WIN32!=0 
     243#elif (defined(PJ_WIN32) && PJ_WIN32!=0) || (defined(PJ_WIN64) && PJ_WIN64!=0)  
    244244        status = PJ_SUCCESS; /* success */ 
    245245#else 
     
    524524             */ 
    525525#           if defined(PJ_WIN32) && PJ_WIN32 != 0 || \ 
     526               defined(PJ_WIN64) && PJ_WIN64 != 0 || \ 
    526527               defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE != 0 
    527528                rc = pj_sock_recv(h->fd, read_op->buf, &bytes_read,  
     
    541542         
    542543        if (rc != PJ_SUCCESS) { 
    543 #           if defined(PJ_WIN32) && PJ_WIN32 != 0 
     544#           if (defined(PJ_WIN32) && PJ_WIN32 != 0) || \ 
     545               (defined(PJ_WIN64) && PJ_WIN64 != 0)  
    544546            /* On Win32, for UDP, WSAECONNRESET on the receive side  
    545547             * indicates that previous sending has triggered ICMP Port  
     
    12821284            (*key->cb.on_accept_complete)(key, op_key,  
    12831285                                          PJ_INVALID_SOCKET, 
    1284                                           bytes_status); 
     1286                                          (pj_status_t)bytes_status); 
    12851287            return PJ_SUCCESS; 
    12861288        } 
Note: See TracChangeset for help on using the changeset viewer.