dotnet: rename Api.GetFspVersion to Api.GetVersion

This commit is contained in:
Bill Zissimopoulos 2018-07-05 14:11:51 -07:00
parent aa50d5a8b9
commit ce924d737c
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3
2 changed files with 2 additions and 3 deletions

View File

@ -355,10 +355,9 @@ namespace Fsp
/// <summary>
/// Return the installed version of WinFsp.
/// </summary>
/// <returns></returns>
public static Version Version()
{
return Api.GetFspVersion();
return Api.GetVersion();
}
/* FSP_FILE_SYSTEM_INTERFACE */

View File

@ -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);