Files
FSI.BT.IR.Tools/FSI.BT.Tools/SystemTrayMenu/Helpers/WindowsExplorerSort.cs
Stephan Maier 647f938eee v1.2
2024-08-27 08:10:27 +02:00

17 lines
458 B
C#

// <copyright file="WindowsExplorerSort.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace FSI.BT.Tools.SystemTrayMenu.Helper
{
using System.Collections.Generic;
internal class WindowsExplorerSort : IComparer<string>
{
public int Compare(string x, string y)
{
return Global.DllImports.NativeMethods.ShlwapiStrCmpLogicalW(x, y);
}
}
}