Sicherung
This commit is contained in:
16
FSI.BT.Tools/SystemTrayMenu/Helpers/WindowsExplorerSort.cs
Normal file
16
FSI.BT.Tools/SystemTrayMenu/Helpers/WindowsExplorerSort.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
// <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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user