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