From ce924d737cc9628715f20d44daf16dae8b1d3c68 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 5 Jul 2018 14:11:51 -0700 Subject: [PATCH] dotnet: rename Api.GetFspVersion to Api.GetVersion --- src/dotnet/FileSystemHost.cs | 3 +-- src/dotnet/Interop.cs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dotnet/FileSystemHost.cs b/src/dotnet/FileSystemHost.cs index 4bb9fc26..5b746915 100644 --- a/src/dotnet/FileSystemHost.cs +++ b/src/dotnet/FileSystemHost.cs @@ -355,10 +355,9 @@ namespace Fsp /// /// Return the installed version of WinFsp. /// - /// public static Version Version() { - return Api.GetFspVersion(); + return Api.GetVersion(); } /* FSP_FILE_SYSTEM_INTERFACE */ diff --git a/src/dotnet/Interop.cs b/src/dotnet/Interop.cs index 41b65aea..36773cad 100644 --- a/src/dotnet/Interop.cs +++ b/src/dotnet/Interop.cs @@ -980,7 +980,7 @@ namespace Fsp.Interop return 0/*STATUS_SUCCESS*/; } - internal static Version GetFspVersion() + internal static Version GetVersion() { UInt32 Version = 0; FspVersion(out Version);