Author: gedmurphy
Date: Tue May 5 22:30:50 2015
New Revision: 67571
URL:
http://svn.reactos.org/svn/reactos?rev=67571&view=rev
Log:
Revert NTAPI changes.
MS uses stdcall by default (/gz), we don't and need to explicitly add this in the
headers
Modified:
trunk/reactos/include/ddk/ntifs.h
Modified: trunk/reactos/include/ddk/ntifs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntifs.h?rev=67…
==============================================================================
--- trunk/reactos/include/ddk/ntifs.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntifs.h [iso-8859-1] Tue May 5 22:30:50 2015
@@ -4890,12 +4890,12 @@
} FS_FILTER_CALLBACK_DATA, *PFS_FILTER_CALLBACK_DATA;
typedef NTSTATUS
-(*PFS_FILTER_CALLBACK) (
+(NTAPI *PFS_FILTER_CALLBACK) (
_In_ PFS_FILTER_CALLBACK_DATA Data,
_Out_ PVOID *CompletionContext);
typedef VOID
-(*PFS_FILTER_COMPLETION_CALLBACK) (
+(NTAPI *PFS_FILTER_COMPLETION_CALLBACK) (
_In_ PFS_FILTER_CALLBACK_DATA Data,
_In_ NTSTATUS OperationStatus,
_In_ PVOID CompletionContext);