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
9cf1579a
Commit
9cf1579a
authored
Dec 12, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Dec 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Cast-qual warning fix.
parent
aa25e293
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
rtl.c
dlls/ntdll/rtl.c
+1
-1
rtl.c
dlls/ntdll/tests/rtl.c
+1
-1
winternl.h
include/winternl.h
+1
-1
No files found.
dlls/ntdll/rtl.c
View file @
9cf1579a
...
...
@@ -583,7 +583,7 @@ VOID WINAPI RtlFillMemoryUlong(ULONG* lpDest, ULONG ulCount, ULONG ulValue)
* RETURNS
* The cumulative CRC32 of dwInitial and iLen bytes of the pData block.
*/
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
dwInitial
,
PBYTE
pData
,
INT
iLen
)
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
dwInitial
,
const
BYTE
*
pData
,
INT
iLen
)
{
DWORD
crc
=
~
dwInitial
;
...
...
dlls/ntdll/tests/rtl.c
View file @
9cf1579a
...
...
@@ -844,7 +844,7 @@ static void test_RtlComputeCrc32(void)
if
(
!
pRtlComputeCrc32
)
return
;
crc
=
pRtlComputeCrc32
(
crc
,
(
LPBYTE
)
src
,
LEN
);
crc
=
pRtlComputeCrc32
(
crc
,
(
const
BYTE
*
)
src
,
LEN
);
ok
(
crc
==
0x40861dc2
,
"Expected 0x40861dc2, got %8x
\n
"
,
crc
);
}
...
...
include/winternl.h
View file @
9cf1579a
...
...
@@ -1986,7 +1986,7 @@ PDEBUG_BUFFER WINAPI RtlCreateQueryDebugBuffer(ULONG,BOOLEAN);
ULONG
WINAPI
RtlCompactHeap
(
HANDLE
,
ULONG
);
LONG
WINAPI
RtlCompareString
(
const
STRING
*
,
const
STRING
*
,
BOOLEAN
);
LONG
WINAPI
RtlCompareUnicodeString
(
const
UNICODE_STRING
*
,
const
UNICODE_STRING
*
,
BOOLEAN
);
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
,
PBYTE
,
INT
);
DWORD
WINAPI
RtlComputeCrc32
(
DWORD
,
const
BYTE
*
,
INT
);
NTSTATUS
WINAPI
RtlConvertSidToUnicodeString
(
PUNICODE_STRING
,
PSID
,
BOOLEAN
);
LONGLONG
WINAPI
RtlConvertLongToLargeInteger
(
LONG
);
ULONGLONG
WINAPI
RtlConvertUlongToLargeInteger
(
ULONG
);
...
...
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