mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
- Remove incorrect and undocumented FsRtlNotifyReportChange declaration.
- Add FILE_NOTIFY_INFORMATION structure definition. svn path=/trunk/; revision=38504
This commit is contained in:
parent
cf0aa5c69c
commit
4d8ae40ee4
1 changed files with 8 additions and 11 deletions
|
@ -1274,6 +1274,14 @@ typedef struct _FILE_MOVE_CLUSTER_INFORMATION
|
||||||
WCHAR FileName[1];
|
WCHAR FileName[1];
|
||||||
} FILE_MOVE_CLUSTER_INFORMATION, *PFILE_MOVE_CLUSTER_INFORMATION;
|
} 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 */
|
/* raw internal file lock struct returned from FsRtlGetNextFileLock */
|
||||||
typedef struct _FILE_SHARED_LOCK_ENTRY {
|
typedef struct _FILE_SHARED_LOCK_ENTRY {
|
||||||
PVOID Unknown1;
|
PVOID Unknown1;
|
||||||
|
@ -3677,17 +3685,6 @@ FsRtlNotifyInitializeSync (
|
||||||
IN PNOTIFY_SYNC *NotifySync
|
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
|
NTKERNELAPI
|
||||||
VOID
|
VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
|
|
Loading…
Reference in a new issue