mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
dotnet: rename NotifyInfoFilter and NotifyInfoAction
This commit is contained in:
parent
2d0df701e3
commit
b05d5e286e
@ -340,7 +340,7 @@ namespace Fsp.Interop
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enumeration of all the possible values for NotifyInfo.Action
|
/// Enumeration of all the possible values for NotifyInfo.Action
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum NotifyInfoAction : UInt32
|
public enum NotifyAction : UInt32
|
||||||
{
|
{
|
||||||
Added = 1,
|
Added = 1,
|
||||||
Removed = 2,
|
Removed = 2,
|
||||||
@ -360,7 +360,7 @@ namespace Fsp.Interop
|
|||||||
/// Enumeration of all the possible values for NotifyInfo.Filter
|
/// Enumeration of all the possible values for NotifyInfo.Filter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum NotifyInfoFilter : UInt32
|
public enum NotifyFilter : UInt32
|
||||||
{
|
{
|
||||||
None = 0x00000,
|
None = 0x00000,
|
||||||
ChangeFileName = 0x00001,
|
ChangeFileName = 0x00001,
|
||||||
@ -385,8 +385,8 @@ namespace Fsp.Interop
|
|||||||
public struct NotifyInfo
|
public struct NotifyInfo
|
||||||
{
|
{
|
||||||
public String FileName;
|
public String FileName;
|
||||||
public NotifyInfoAction Action;
|
public NotifyAction Action;
|
||||||
public NotifyInfoFilter Filter;
|
public NotifyFilter Filter;
|
||||||
}
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user