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
a98496a0
Commit
a98496a0
authored
Aug 29, 2014
by
Austin English
Committed by
Alexandre Julliard
Sep 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for WriteEncryptedFileRaw.
parent
8ca36632
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
crypt.c
dlls/advapi32/crypt.c
+19
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
a98496a0
...
...
@@ -825,4 +825,4 @@
# @ stub WmiSetSingleItemA
# @ stub WmiSetSingleItemW
# @ stub Wow64Win32ApiEntry
# @ stub WriteEncryptedFileRaw
@ stdcall WriteEncryptedFileRaw(ptr ptr ptr)
dlls/advapi32/crypt.c
View file @
a98496a0
...
...
@@ -2434,3 +2434,22 @@ NTSTATUS WINAPI SystemFunction041(PVOID memory, ULONG length, ULONG flags)
FIXME
(
"(%p, %x, %x): stub [RtlDecryptMemory]
\n
"
,
memory
,
length
,
flags
);
return
STATUS_SUCCESS
;
}
/******************************************************************************
* WriteEncryptedFileRaw (ADVAPI32.@)
*
* Import encrypted files
*
* PARAMS
* import [I] pointer to the import callback function
* callback [I] pointer to the application defined context
* context [I] pointer to the system context
* RETURNS
* Success: ERROR_SUCCESS
* Failure: NTSTATUS error code
*/
DWORD
WINAPI
WriteEncryptedFileRaw
(
PFE_IMPORT_FUNC
import
,
PVOID
callback
,
PVOID
context
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
import
,
callback
,
context
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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