You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
533 B
20 lines
533 B
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) Microsoft Corporation
|
|
//
|
|
// SYNOPSIS
|
|
//
|
|
// Defines the ANSI versions of the IP address helper functions.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef _UNICODE
|
|
#undef _UNICODE
|
|
#endif
|
|
|
|
#define ias_inet_addr ias_inet_atoh
|
|
#define ias_inet_ntoa ias_inet_htoa
|
|
#define IASStringToSubNet IASStringToSubNetA
|
|
#define IASIsStringSubNet IASIsStringSubNetA
|
|
|
|
#include <inet.c>
|