SystemTrayMenu/Helpers/WindowsExplorerSort.cs
2022-06-13 01:32:36 +02:00

18 lines
459 B
C#

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