17 lines
458 B
C#
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);
|
|
}
|
|
}
|
|
}
|