From b05d5e286e8ee3b5d9911907503a6aee8be97864 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Fri, 27 Nov 2020 10:37:22 -0800 Subject: [PATCH] dotnet: rename NotifyInfoFilter and NotifyInfoAction --- src/dotnet/Interop.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dotnet/Interop.cs b/src/dotnet/Interop.cs index 49ca54e2..9547d06d 100644 --- a/src/dotnet/Interop.cs +++ b/src/dotnet/Interop.cs @@ -340,7 +340,7 @@ namespace Fsp.Interop /// /// Enumeration of all the possible values for NotifyInfo.Action /// - public enum NotifyInfoAction : UInt32 + public enum NotifyAction : UInt32 { Added = 1, Removed = 2, @@ -360,7 +360,7 @@ namespace Fsp.Interop /// Enumeration of all the possible values for NotifyInfo.Filter /// [Flags] - public enum NotifyInfoFilter : UInt32 + public enum NotifyFilter : UInt32 { None = 0x00000, ChangeFileName = 0x00001, @@ -385,8 +385,8 @@ namespace Fsp.Interop public struct NotifyInfo { public String FileName; - public NotifyInfoAction Action; - public NotifyInfoFilter Filter; + public NotifyAction Action; + public NotifyFilter Filter; } [StructLayout(LayoutKind.Sequential)]