From b9c0d080993c75ec359f26630a3ce08cea85091f Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Tue, 5 May 2015 18:54:28 +0000 Subject: [PATCH] [DDK] Fix the FS filter callback definitions svn path=/trunk/; revision=67563 --- reactos/include/ddk/ntifs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/ddk/ntifs.h b/reactos/include/ddk/ntifs.h index 982bef28de4..45d0ba7d722 100644 --- a/reactos/include/ddk/ntifs.h +++ b/reactos/include/ddk/ntifs.h @@ -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);