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
0c728255
Commit
0c728255
authored
Jan 16, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a stub implementation of NtNotifyChangeDirectoryFile.
parent
eb919b52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
directory.c
dlls/ntdll/directory.c
+15
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
No files found.
dlls/ntdll/directory.c
View file @
0c728255
...
...
@@ -1777,3 +1777,18 @@ done:
RtlReleasePebLock
();
return
status
;
}
/******************************************************************************
* NtNotifyChangeDirectoryFile [NTDLL.@]
*/
NTSTATUS
WINAPI
NtNotifyChangeDirectoryFile
(
HANDLE
FileHandle
,
HANDLE
Event
,
PIO_APC_ROUTINE
ApcRoutine
,
PVOID
ApcContext
,
PIO_STATUS_BLOCK
IoStatusBlock
,
PVOID
Buffer
,
ULONG
BufferSize
,
ULONG
CompletionFilter
,
BOOLEAN
WatchTree
)
{
FIXME
(
"%p %p %p %p %p %p %lu %lu %d
\n
"
,
FileHandle
,
Event
,
ApcRoutine
,
ApcContext
,
IoStatusBlock
,
Buffer
,
BufferSize
,
CompletionFilter
,
WatchTree
);
return
STATUS_NOT_IMPLEMENTED
;
}
dlls/ntdll/ntdll.spec
View file @
0c728255
...
...
@@ -200,7 +200,7 @@
# @ stub NtMapUserPhysicalPagesScatter
@ stdcall NtMapViewOfSection(long long ptr long long ptr ptr long long long)
# @ stub NtModifyBootEntry
@ st
ub NtNotifyChangeDirectoryFile
@ st
dcall NtNotifyChangeDirectoryFile(long long ptr ptr ptr ptr long long long)
@ stdcall NtNotifyChangeKey(long long ptr ptr ptr long long ptr long long)
# @ stub NtNotifyChangeMultipleKeys
@ stdcall NtOpenDirectoryObject(long long long)
...
...
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