Fixed bad decl of Kernel32.READ_DIRECTORY_NOTIFY_INFORMATION_CLASS (#450)

nullableenabled
David Hall 2024-03-28 12:07:45 -06:00
parent ab61a44669
commit 375657cf49
1 changed files with 7 additions and 1 deletions

View File

@ -638,13 +638,19 @@ public static partial class Kernel32
/// The ReadDirectoryChangesExW function should provide information that describes the changes within the specified directory,
/// and return this information in the output buffer in the form of FILE_NOTIFY_INFORMATION structures.
/// </summary>
ReadDirectoryNotifyInformation,
ReadDirectoryNotifyInformation = 1,
/// <summary>
/// The ReadDirectoryChangesExW function should provide extended information that describes the changes within the specified
/// directory, and return this information in the output buffer in the form of FILE_NOTIFY_EXTENDED_INFORMATION structures.
/// </summary>
ReadDirectoryNotifyExtendedInformation,
/// <summary/>
ReadDirectoryNotifyFullInformation,
/// <summary/>
ReadDirectoryNotifyMaximumInformation
}
/// <summary>Flags used by <see cref="FILE_REMOTE_PROTOCOL_INFO"/>.</summary>