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
5319668a
Commit
5319668a
authored
Nov 13, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: Cast-qual warning fix.
parent
02c5df73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
implglue.c
dlls/rsaenh/implglue.c
+2
-2
No files found.
dlls/rsaenh/implglue.c
View file @
5319668a
...
@@ -42,7 +42,7 @@ VOID WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len
...
@@ -42,7 +42,7 @@ VOID WINAPI MD5Update( MD5_CTX *ctx, const unsigned char *buf, unsigned int len
VOID
WINAPI
MD5Final
(
MD5_CTX
*
ctx
);
VOID
WINAPI
MD5Final
(
MD5_CTX
*
ctx
);
/* Function prototypes copied from dlls/advapi32/crypt_sha.c */
/* Function prototypes copied from dlls/advapi32/crypt_sha.c */
VOID
WINAPI
A_SHAInit
(
PSHA_CTX
Context
);
VOID
WINAPI
A_SHAInit
(
PSHA_CTX
Context
);
VOID
WINAPI
A_SHAUpdate
(
PSHA_CTX
Context
,
PCHAR
Buffer
,
UINT
BufferSize
);
VOID
WINAPI
A_SHAUpdate
(
PSHA_CTX
Context
,
const
unsigned
char
*
Buffer
,
UINT
BufferSize
);
VOID
WINAPI
A_SHAFinal
(
PSHA_CTX
Context
,
PULONG
Result
);
VOID
WINAPI
A_SHAFinal
(
PSHA_CTX
Context
,
PULONG
Result
);
/* Function prototype copied from dlls/advapi32/crypt.c */
/* Function prototype copied from dlls/advapi32/crypt.c */
BOOL
WINAPI
SystemFunction036
(
PVOID
pbBuffer
,
ULONG
dwLen
);
BOOL
WINAPI
SystemFunction036
(
PVOID
pbBuffer
,
ULONG
dwLen
);
...
@@ -89,7 +89,7 @@ BOOL update_hash_impl(ALG_ID aiAlgid, HASH_CONTEXT *pHashContext, CONST BYTE *pb
...
@@ -89,7 +89,7 @@ BOOL update_hash_impl(ALG_ID aiAlgid, HASH_CONTEXT *pHashContext, CONST BYTE *pb
break
;
break
;
case
CALG_SHA
:
case
CALG_SHA
:
A_SHAUpdate
(
&
pHashContext
->
sha
,
(
PCHAR
)
pbData
,
dwDataLen
);
A_SHAUpdate
(
&
pHashContext
->
sha
,
pbData
,
dwDataLen
);
break
;
break
;
default:
default:
...
...
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