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/pjlib-test/errno.c

    r3553 r4537  
    2929#define THIS_FILE   "errno" 
    3030 
    31 #if defined(PJ_WIN32) && PJ_WIN32 != 0 
     31#if (defined(PJ_WIN32) && PJ_WIN32 != 0) || \ 
     32    (defined(PJ_WIN64) && PJ_WIN64 != 0) 
    3233#   include <windows.h> 
    3334#endif 
     
    6061const char *my_stristr(const char *whole, const char *part) 
    6162{ 
    62     int part_len = strlen(part); 
     63    int part_len = (int)strlen(part); 
    6364    while (*whole) { 
    6465        if (my_strncasecmp(whole, part, part_len) == 0) 
Note: See TracChangeset for help on using the changeset viewer.