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
2730fe6d
Commit
2730fe6d
authored
Oct 11, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Oct 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Make internal functions static.
parent
89e139e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
crypt_sha.c
dlls/advapi32/crypt_sha.c
+1
-1
registry.c
dlls/advapi32/registry.c
+2
-2
No files found.
dlls/advapi32/crypt_sha.c
View file @
2730fe6d
...
...
@@ -49,7 +49,7 @@ typedef struct {
#define R4(v,w,x,y,z,i) z+=f4(w,x,y)+blk1(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
/* Hash a single 512-bit block. This is the core of the algorithm. */
void
SHA1Transform
(
ULONG
State
[
5
],
UCHAR
Buffer
[
64
])
static
void
SHA1Transform
(
ULONG
State
[
5
],
UCHAR
Buffer
[
64
])
{
ULONG
a
,
b
,
c
,
d
,
e
;
ULONG
*
Block
;
...
...
dlls/advapi32/registry.c
View file @
2730fe6d
...
...
@@ -1373,8 +1373,8 @@ LONG WINAPI RegQueryValueA( HKEY hkey, LPCSTR name, LPSTR data, LPLONG count )
*
* Helper function for RegGetValueA/W.
*/
VOID
ADVAPI_ApplyRestrictions
(
DWORD
dwFlags
,
DWORD
dwType
,
DWORD
cbData
,
PLONG
ret
)
static
VOID
ADVAPI_ApplyRestrictions
(
DWORD
dwFlags
,
DWORD
dwType
,
DWORD
cbData
,
PLONG
ret
)
{
/* Check if the type is restricted by the passed flags */
if
(
*
ret
==
ERROR_SUCCESS
||
*
ret
==
ERROR_MORE_DATA
)
...
...
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