- Remove incorrect and undocumented FsRtlNotifyReportChange declaration.

- Add FILE_NOTIFY_INFORMATION structure definition.

svn path=/trunk/; revision=38504
This commit is contained in:
Aleksey Bragin 2009-01-02 10:38:21 +00:00
parent cf0aa5c69c
commit 4d8ae40ee4

View file

@ -1274,6 +1274,14 @@ typedef struct _FILE_MOVE_CLUSTER_INFORMATION
WCHAR FileName[1];
} FILE_MOVE_CLUSTER_INFORMATION, *PFILE_MOVE_CLUSTER_INFORMATION;
typedef struct _FILE_NOTIFY_INFORMATION
{
ULONG NextEntryOffset;
ULONG Action;
ULONG FileNameLength;
WCHAR FileName[1];
} FILE_NOTIFY_INFORMATION, *PFILE_NOTIFY_INFORMATION;
/* raw internal file lock struct returned from FsRtlGetNextFileLock */
typedef struct _FILE_SHARED_LOCK_ENTRY {
PVOID Unknown1;
@ -3677,17 +3685,6 @@ FsRtlNotifyInitializeSync (
IN PNOTIFY_SYNC *NotifySync
);
NTKERNELAPI
VOID
NTAPI
FsRtlNotifyReportChange (
IN PNOTIFY_SYNC NotifySync,
IN PLIST_ENTRY NotifyList,
IN PSTRING FullTargetName,
IN PUSHORT FileNamePartLength,
IN ULONG FilterMatch
);
NTKERNELAPI
VOID
NTAPI