Author: hbelusca
Date: Sun Jun 29 18:30:12 2014
New Revision: 63674

URL: http://svn.reactos.org/svn/reactos?rev=63674&view=rev
Log:
[NDK]: Certainly that this member exists only in Vista+. See r63673.

Modified:
    trunk/reactos/include/ndk/pstypes.h

Modified: trunk/reactos/include/ndk/pstypes.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/pstypes.h?rev=63674&r1=63673&r2=63674&view=diff
==============================================================================
--- trunk/reactos/include/ndk/pstypes.h [iso-8859-1] (original)
+++ trunk/reactos/include/ndk/pstypes.h [iso-8859-1] Sun Jun 29 18:30:12 2014
@@ -576,6 +576,16 @@
     _In_ PVOID Parameter
 );
 
+#if (NTDDI_VERSION >= NTDDI_LONGHORN)
+typedef
+NTSTATUS
+(NTAPI *PKWIN32_WIN32DATACOLLECTION_CALLOUT)(
+    _In_ struct _EPROCESS *Process,
+    _In_ PVOID Callback,
+    _In_ PVOID Context
+);
+#endif
+
 //
 // Lego Callback
 //
@@ -1413,6 +1423,9 @@
     PKWIN32_SESSION_CALLOUT WindowStationDeleteProcedure;
     PKWIN32_SESSION_CALLOUT WindowStationParseProcedure;
     PKWIN32_SESSION_CALLOUT WindowStationOpenProcedure;
+#if (NTDDI_VERSION >= NTDDI_LONGHORN)
+    PKWIN32_WIN32DATACOLLECTION_CALLOUT Win32DataCollectionProcedure;
+#endif
 } WIN32_CALLOUTS_FPNS, *PWIN32_CALLOUTS_FPNS;
 
 #endif // !NTOS_MODE_USER


Reply via email to