Fix the FS filter callback definitions

svn path=/trunk/; revision=67563
This commit is contained in:
Ged Murphy 2015-05-05 18:54:28 +00:00
parent 82000b2bed
commit b9c0d08099

View file

@ -4890,12 +4890,12 @@ typedef struct _FS_FILTER_CALLBACK_DATA {
} FS_FILTER_CALLBACK_DATA, *PFS_FILTER_CALLBACK_DATA;
typedef NTSTATUS
(NTAPI *PFS_FILTER_CALLBACK) (
(*PFS_FILTER_CALLBACK) (
_In_ PFS_FILTER_CALLBACK_DATA Data,
_Out_ PVOID *CompletionContext);
typedef VOID
(NTAPI *PFS_FILTER_COMPLETION_CALLBACK) (
(*PFS_FILTER_COMPLETION_CALLBACK) (
_In_ PFS_FILTER_CALLBACK_DATA Data,
_In_ NTSTATUS OperationStatus,
_In_ PVOID CompletionContext);