[pkg-wine-party] [wine] 76/141: advapi32: Add stub for WriteEncryptedFileRaw.

Michael Gilbert mgilbert at moszumanska.debian.org
Sun Sep 7 00:45:54 UTC 2014


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a commit to branch master
in repository wine.

commit a98496a09a97a554a18c7f29fc63f0052537fd8b
Author: Austin English <austinenglish at gmail.com>
Date:   Fri Aug 29 18:15:10 2014 -0500

    advapi32: Add stub for WriteEncryptedFileRaw.
---
 dlls/advapi32/advapi32.spec |  2 +-
 dlls/advapi32/crypt.c       | 19 +++++++++++++++++++
 2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/dlls/advapi32/advapi32.spec b/dlls/advapi32/advapi32.spec
index e61e983..d1ab64d 100644
--- a/dlls/advapi32/advapi32.spec
+++ b/dlls/advapi32/advapi32.spec
@@ -825,4 +825,4 @@
 # @ stub WmiSetSingleItemA
 # @ stub WmiSetSingleItemW
 # @ stub Wow64Win32ApiEntry
-# @ stub WriteEncryptedFileRaw
+@ stdcall WriteEncryptedFileRaw(ptr ptr ptr)
diff --git a/dlls/advapi32/crypt.c b/dlls/advapi32/crypt.c
index f369ae3..f74dee4 100644
--- a/dlls/advapi32/crypt.c
+++ b/dlls/advapi32/crypt.c
@@ -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;
+}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git



More information about the pkg-wine-party mailing list