Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
68953ffd
Commit
68953ffd
authored
Aug 03, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dnsapi: Define DNS_STATUS as LONG instead of long to improve Win64 compatibility.
parent
69bc2af9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
name.c
dlls/dnsapi/tests/name.c
+1
-1
windns.h
include/windns.h
+1
-1
No files found.
dlls/dnsapi/tests/name.c
View file @
68953ffd
...
...
@@ -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 %l
d
\n
"
,
ok
(
status
==
test_data
[
i
].
status
,
"%d:
\'
%s
\'
: got %
d, expected %
d
\n
"
,
i
,
test_data
[
i
].
name
,
status
,
test_data
[
i
].
status
);
}
}
...
...
include/windns.h
View file @
68953ffd
...
...
@@ -155,7 +155,7 @@ typedef enum _DnsSection
DnsSectionAddtional
}
DNS_SECTION
;
typedef
long
DNS_STATUS
;
typedef
LONG
DNS_STATUS
,
*
P
DNS_STATUS
;
typedef
DWORD
IP4_ADDRESS
;
typedef
struct
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment