Commit 68953ffd authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

dnsapi: Define DNS_STATUS as LONG instead of long to improve Win64 compatibility.

parent 69bc2af9
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment