Commit f91a7b2c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

fltmgr.sys: Add FltInitializePushLock stub.

parent d4664c13
......@@ -97,7 +97,7 @@
@ stub FltGetVolumeProperties
@ stub FltInitializeFileLock
@ stub FltInitializeOplock
@ stub FltInitializePushLock
@ stdcall FltInitializePushLock(ptr)
@ stub FltIs32bitProcess
@ stub FltIsCallbackDataDirty
@ stub FltIsDirectory
......
......@@ -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 );
}
......@@ -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;
......
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