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
f91a7b2c
Commit
f91a7b2c
authored
Nov 04, 2015
by
Austin English
Committed by
Alexandre Julliard
Nov 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fltmgr.sys: Add FltInitializePushLock stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d4664c13
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
fltmgr.sys.spec
dlls/fltmgr.sys/fltmgr.sys.spec
+1
-1
main.c
dlls/fltmgr.sys/main.c
+7
-0
ntifs.h
include/ddk/ntifs.h
+2
-0
No files found.
dlls/fltmgr.sys/fltmgr.sys.spec
View file @
f91a7b2c
...
...
@@ -97,7 +97,7 @@
@ stub FltGetVolumeProperties
@ stub FltInitializeFileLock
@ stub FltInitializeOplock
@ st
ub FltInitializePushLock
@ st
dcall FltInitializePushLock(ptr)
@ stub FltIs32bitProcess
@ stub FltIsCallbackDataDirty
@ stub FltIsDirectory
...
...
dlls/fltmgr.sys/main.c
View file @
f91a7b2c
...
...
@@ -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
);
}
include/ddk/ntifs.h
View file @
f91a7b2c
...
...
@@ -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
;
...
...
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