[pkg-wine-party] [wine] 135/379: fltmgr.sys: Add FltInitializePushLock stub.

Michael Gilbert mgilbert at moszumanska.debian.org
Sun Nov 15 15:40:18 UTC 2015


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

mgilbert pushed a commit to branch master
in repository wine.

commit f91a7b2cfe5b44fea333ed70b9fc38a509b7798a
Author: Austin English <austinenglish at gmail.com>
Date:   Wed Nov 4 10:46:50 2015 -0800

    fltmgr.sys: Add FltInitializePushLock stub.
    
    Signed-off-by: Austin English <austinenglish at gmail.com>
    Signed-off-by: Alexandre Julliard <julliard at winehq.org>
---
 dlls/fltmgr.sys/fltmgr.sys.spec | 2 +-
 dlls/fltmgr.sys/main.c          | 7 +++++++
 include/ddk/ntifs.h             | 2 ++
 3 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/dlls/fltmgr.sys/fltmgr.sys.spec b/dlls/fltmgr.sys/fltmgr.sys.spec
index 5310269..ea84d81 100644
--- a/dlls/fltmgr.sys/fltmgr.sys.spec
+++ b/dlls/fltmgr.sys/fltmgr.sys.spec
@@ -97,7 +97,7 @@
 @ stub FltGetVolumeProperties
 @ stub FltInitializeFileLock
 @ stub FltInitializeOplock
-@ stub FltInitializePushLock
+@ stdcall FltInitializePushLock(ptr)
 @ stub FltIs32bitProcess
 @ stub FltIsCallbackDataDirty
 @ stub FltIsDirectory
diff --git a/dlls/fltmgr.sys/main.c b/dlls/fltmgr.sys/main.c
index 7341ef2..70ee307 100644
--- a/dlls/fltmgr.sys/main.c
+++ b/dlls/fltmgr.sys/main.c
@@ -25,6 +25,8 @@
 #include "windef.h"
 #include "winbase.h"
 #include "winternl.h"
+#include "ddk/ntddk.h"
+#include "ddk/ntifs.h"
 #include "ddk/wdm.h"
 #include "wine/debug.h"
 
@@ -36,3 +38,8 @@ NTSTATUS WINAPI DriverEntry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
 
     return STATUS_SUCCESS;
 }
+
+void WINAPI FltInitializePushLock( EX_PUSH_LOCK *lock )
+{
+    FIXME( "(%p): stub\n", lock );
+}
diff --git a/include/ddk/ntifs.h b/include/ddk/ntifs.h
index a8d90a1..32c9e30 100644
--- a/include/ddk/ntifs.h
+++ b/include/ddk/ntifs.h
@@ -19,6 +19,8 @@
 #ifndef __NTIFS_H__
 #define __NTIFS_H__
 
+typedef struct _EX_PUSH_LOCK EX_PUSH_LOCK, *PEX_PUSH_LOCK;
+
 typedef struct _KQUEUE
 {
   DISPATCHER_HEADER Header;

-- 
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