dnsapi: Define DNS_STATUS as LONG instead of long to improve Win64 compatibility.
This commit is contained in:
parent
69bc2af990
commit
68953ffd7d
|
@ -161,7 +161,7 @@ static void test_DnsValidateName_A( void )
|
|||
for (i = 0; i < sizeof(test_data) / sizeof(test_data[0]); i++)
|
||||
{
|
||||
status = pDnsValidateName_A( test_data[i].name, test_data[i].format );
|
||||
ok( status == test_data[i].status, "%d: \'%s\': got %ld, expected %ld\n",
|
||||
ok( status == test_data[i].status, "%d: \'%s\': got %d, expected %d\n",
|
||||
i, test_data[i].name, status, test_data[i].status );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -155,7 +155,7 @@ typedef enum _DnsSection
|
|||
DnsSectionAddtional
|
||||
} DNS_SECTION;
|
||||
|
||||
typedef long DNS_STATUS;
|
||||
typedef LONG DNS_STATUS, *PDNS_STATUS;
|
||||
typedef DWORD IP4_ADDRESS;
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Reference in New Issue