Commit 27f00d4f authored by Austin English's avatar Austin English Committed by Alexandre Julliard

advapi32: Add stub for OpenEncryptedFileRawA/W.

parent e52bbd58
......@@ -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)
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment