Author: akhaldi
Date: Thu Aug 1 14:35:54 2013
New Revision: 59610
URL:
http://svn.reactos.org/svn/reactos?rev=59610&view=rev
Log:
[DDK]
* Fix annotations for INSTANCE_BASIC_INFORMATION, INSTANCE_PARTIAL_INFORMATION and
INSTANCE_FULL_INFORMATION.
Modified:
trunk/reactos/include/ddk/fltuserstructures.h
Modified: trunk/reactos/include/ddk/fltuserstructures.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/fltuserstructu…
==============================================================================
--- trunk/reactos/include/ddk/fltuserstructures.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/fltuserstructures.h [iso-8859-1] Thu Aug 1 14:35:54 2013
@@ -195,15 +195,17 @@
WCHAR FilterVolumeName[1];
} FILTER_VOLUME_BASIC_INFORMATION, *PFILTER_VOLUME_BASIC_INFORMATION;
+typedef
_Struct_size_bytes_(sizeof(INSTANCE_BASIC_INFORMATION) * InstanceNameLength)
-typedef struct _INSTANCE_BASIC_INFORMATION {
+struct _INSTANCE_BASIC_INFORMATION {
ULONG NextEntryOffset;
USHORT InstanceNameLength;
USHORT InstanceNameBufferOffset;
} INSTANCE_BASIC_INFORMATION, *PINSTANCE_BASIC_INFORMATION;
+typedef
_Struct_size_bytes_(sizeof(INSTANCE_PARTIAL_INFORMATION) + InstanceNameLength +
AltitudeLength)
-typedef struct _INSTANCE_PARTIAL_INFORMATION {
+struct _INSTANCE_PARTIAL_INFORMATION {
ULONG NextEntryOffset;
USHORT InstanceNameLength;
USHORT InstanceNameBufferOffset;
@@ -211,8 +213,9 @@
USHORT AltitudeBufferOffset;
} INSTANCE_PARTIAL_INFORMATION, *PINSTANCE_PARTIAL_INFORMATION;
+typedef
_Struct_size_bytes_(sizeof(INSTANCE_FULL_INFORMATION) + InstanceNameLength +
AltitudeLength + VolumeNameLength + FilterNameLength)
-typedef struct _INSTANCE_FULL_INFORMATION {
+struct _INSTANCE_FULL_INFORMATION {
ULONG NextEntryOffset;
USHORT InstanceNameLength;
USHORT InstanceNameBufferOffset;