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/pjsip-apps/src/pjsua/pjsua_app_legacy.c

    r4489 r4537  
    6262 * Input URL. 
    6363 */ 
    64 static void ui_input_url(const char *title, char *buf, int len,  
     64static void ui_input_url(const char *title, char *buf, pj_size_t len,  
    6565                         input_result *result) 
    6666{ 
     
    8080 
    8181    fflush(stdout); 
    82     if (fgets(buf, len, stdin) == NULL) 
     82    if (fgets(buf, (int)len, stdin) == NULL) 
    8383        return; 
    8484    len = strlen(buf); 
     
    9999    if (pj_isdigit(*buf) || *buf=='-') { 
    100100         
    101         int i; 
     101        unsigned i; 
    102102         
    103103        if (*buf=='-') 
     
    144144 
    145145    printf("%s (empty to cancel): ", title); fflush(stdout); 
    146     if (fgets(buf, len, stdin) == NULL) 
     146    if (fgets(buf, (int)len, stdin) == NULL) 
    147147        return PJ_FALSE; 
    148148 
     
    16751675    char buf[128];     
    16761676 
    1677     keystroke_help(current_call); 
     1677    keystroke_help(); 
    16781678 
    16791679    for (;;) { 
     
    16891689             */ 
    16901690            /* Reopen stdin/stdout/stderr to /dev/console */ 
    1691 #if defined(PJ_WIN32) && PJ_WIN32!=0 && \ 
     1691#if ((defined(PJ_WIN32) && PJ_WIN32!=0) || \ 
     1692     (defined(PJ_WIN64) && PJ_WIN64!=0)) && \ 
    16921693  (!defined(PJ_WIN32_WINCE) || PJ_WIN32_WINCE==0) 
    16931694            if (freopen ("CONIN$", "r", stdin) == NULL) { 
     
    18481849            break; 
    18491850 
    1850         case 's':            
    1851             ui_sleep(menuin); 
    1852             break; 
     1851        case 's': 
     1852            if (pj_ansi_strnicmp(menuin, "sleep", 5)==0) { 
     1853                ui_sleep(menuin); 
     1854                break; 
     1855            } 
    18531856            /* Continue below */ 
    18541857 
Note: See TracChangeset for help on using the changeset viewer.