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
8ca36632
Commit
8ca36632
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 ReadEncryptedFileRaw.
parent
27f00d4f
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 @
8ca36632
...
...
@@ -566,7 +566,7 @@
@ stdcall QueryTraceW(int64 wstr ptr)
# @ stub QueryUsersOnEncryptedFile
@ stdcall QueryWindows31FilesMigration(long)
# @ stub ReadEncryptedFileRaw
@ stdcall ReadEncryptedFileRaw(ptr ptr ptr)
@ stdcall ReadEventLogA (long long long ptr long ptr ptr)
@ stdcall ReadEventLogW (long long long ptr long ptr ptr)
@ stdcall RegCloseKey(long)
...
...
dlls/advapi32/crypt.c
View file @
8ca36632
...
...
@@ -2290,6 +2290,25 @@ DWORD WINAPI OpenEncryptedFileRawW(LPCWSTR filename, ULONG flags, PVOID *context
}
/******************************************************************************
* ReadEncryptedFileRaw (ADVAPI32.@)
*
* Export encrypted files
*
* PARAMS
* export [I] pointer to the export 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
ReadEncryptedFileRaw
(
PFE_EXPORT_FUNC
export
,
PVOID
callback
,
PVOID
context
)
{
FIXME
(
"(%p, %p, %p): stub
\n
"
,
export
,
callback
,
context
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* SystemFunction030 (ADVAPI32.@)
*
* Tests if two blocks of 16 bytes are equal
...
...
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