Ignore:
Timestamp:
Mar 28, 2007 3:49:48 PM (17 years ago)
Author:
bennylp
Message:

Updated projects and Makefiles with the new pjnath library

File:
1 edited

Legend:

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

    r1110 r1111  
    1717 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  
    1818 */ 
     19#include <pj/config.h> 
    1920 
    2021#define WIN32_LEAN_AND_MEAN 
    2122#include <windows.h> 
    2223 
    23 /* PMIB_ICMP_EX is not declared in VC6, causing error */ 
    24 #if defined(_MSC_VER) && _MSC_VER < 1400 
     24/* PMIB_ICMP_EX is not declared in VC6, causing error. 
     25 * But EVC4, which also claims to be VC6, does have it!  
     26 */ 
     27#if defined(_MSC_VER) && _MSC_VER==1200 && !defined(PJ_WIN32_WINCE) 
    2528#   define PMIB_ICMP_EX void* 
    2629#endif 
Note: See TracChangeset for help on using the changeset viewer.