Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2a6dda1c
Commit
2a6dda1c
authored
Jun 23, 2006
by
Juan Lang
Committed by
Alexandre Julliard
Jun 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi: Add a stub for SystemFunction035.
parent
91ac4b55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
crypt.c
dlls/advapi32/crypt.c
+15
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
2a6dda1c
...
...
@@ -629,7 +629,7 @@
@ stdcall SystemFunction032(ptr ptr)
@ stub SystemFunction033
@ stub SystemFunction034
@ st
ub SystemFunction035
@ st
dcall SystemFunction035(str)
@ stdcall SystemFunction036(ptr long) # RtlGenRandom
@ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory
@ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory
...
...
dlls/advapi32/crypt.c
View file @
2a6dda1c
...
...
@@ -1984,6 +1984,21 @@ BOOL WINAPI SystemFunction030(PVOID b1, PVOID b2)
}
/******************************************************************************
* SystemFunction035 (ADVAPI32.@)
*
* Described here:
http://disc.server.com/discussion.cgi?disc=148775;article=942;title=Coding%2FASM%2FSystem
*
* NOTES
* Stub, always return TRUE.
*/
BOOL
WINAPI
SystemFunction035
(
LPCSTR
lpszDllFilePath
)
{
FIXME
(
"%s: stub
\n
"
,
debugstr_a
(
lpszDllFilePath
));
return
TRUE
;
}
/******************************************************************************
* SystemFunction036 (ADVAPI32.@)
*
* MSDN documents this function as RtlGenRandom and declares it in ntsecapi.h
...
...
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