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
27f00d4f
Commit
27f00d4f
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 OpenEncryptedFileRawA/W.
parent
e52bbd58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
2 deletions
+32
-2
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
crypt.c
dlls/advapi32/crypt.c
+30
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
27f00d4f
...
...
@@ -507,8 +507,8 @@
@ stdcall ObjectPrivilegeAuditAlarmW(wstr ptr long long ptr long)
@ stdcall OpenBackupEventLogA (str str)
@ stdcall OpenBackupEventLogW (wstr wstr)
# @ stub OpenEncryptedFileRawA
# @ stub OpenEncryptedFileRawW
@ stdcall OpenEncryptedFileRawA(str long ptr)
@ stdcall OpenEncryptedFileRawW(wstr long ptr)
@ stdcall OpenEventLogA (str str)
@ stdcall OpenEventLogW (wstr wstr)
@ stdcall OpenProcessToken(long long ptr)
...
...
dlls/advapi32/crypt.c
View file @
27f00d4f
...
...
@@ -2260,6 +2260,36 @@ BOOL WINAPI CryptVerifySignatureA (HCRYPTHASH hHash, const BYTE *pbSignature, DW
}
/******************************************************************************
* OpenEncryptedFileRawA (ADVAPI32.@)
*
* See OpenEncryptedFileRawW
*/
DWORD
WINAPI
OpenEncryptedFileRawA
(
LPCSTR
filename
,
ULONG
flags
,
PVOID
*
context
)
{
FIXME
(
"(%s, %x, %p): stub
\n
"
,
debugstr_a
(
filename
),
flags
,
context
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* OpenEncryptedFileRawW (ADVAPI32.@)
*
* Opens an EFS encrypted file for backup/restore
*
* PARAMS
* filename [I] Filename to operate on
* flags [I] Operation to perform
* context [I] Handle to the context (out)
* RETURNS
* Success: ERROR_SUCCESS
* Failure: NTSTATUS error code
*/
DWORD
WINAPI
OpenEncryptedFileRawW
(
LPCWSTR
filename
,
ULONG
flags
,
PVOID
*
context
)
{
FIXME
(
"(%s, %x, %p): stub
\n
"
,
debugstr_w
(
filename
),
flags
,
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